Skip to content

Commit

Permalink
Fixed ProductId persistence issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sharadb-amazon committed Sep 14, 2023
1 parent f085cc2 commit efb47f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class TargetVideoPlayerInfo
bool IsInitialized() { return mInitialized; }
void Reset();
uint16_t GetVendorId() const { return mVendorId; }
int GetProductId() const { return mProductId; }
uint16_t GetProductId() const { return mProductId; }
chip::DeviceTypeId GetDeviceType() const { return mDeviceType; }
chip::NodeId GetNodeId() const { return mNodeId; }
chip::FabricIndex GetFabricIndex() const { return mFabricIndex; }
Expand Down

0 comments on commit efb47f8

Please sign in to comment.