@24i/bigscreen-sdk 1.0.54-alpha.2838 → 1.0.54-alpha.2840

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@24i/bigscreen-sdk",
3
- "version": "1.0.54-alpha.2838",
3
+ "version": "1.0.54-alpha.2840",
4
4
  "description": "SmartApps BIGscreen SDK monorepo",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -19,6 +19,5 @@ export const mapBase = (payload: Payload): BaseResult => {
19
19
  user_id: payload.userId || '',
20
20
  user_profile_id: payload.userProfileId,
21
21
  custom_gdpr_status: payload.gdprStatus,
22
- ...(!payload.userId && { user_anon_id: payload.deviceId }),
23
22
  };
24
23
  };
@@ -215,10 +215,10 @@ export class Seekbar extends Component<Props> implements IFocusable {
215
215
  programEnd,
216
216
  start,
217
217
  end,
218
- this.currentTime,
218
+ player.currentTime,
219
219
  );
220
220
  }
221
- return this.currentTime;
221
+ return player.currentTime;
222
222
  }
223
223
 
224
224
  focus() {