@thestatic-tv/dcl-sdk 2.5.21 → 2.5.22
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/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4326,9 +4326,8 @@ var StaticTVClient = class {
|
|
|
4326
4326
|
}
|
|
4327
4327
|
if (hasCallback) {
|
|
4328
4328
|
this.config.onVideoPlay(video.src);
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
}
|
|
4329
|
+
this._streamVerified = true;
|
|
4330
|
+
this._pendingVideoData = null;
|
|
4332
4331
|
}
|
|
4333
4332
|
if (this.guideUI) {
|
|
4334
4333
|
this.guideUI.currentVideoId = video.id;
|
package/dist/index.mjs
CHANGED
|
@@ -4278,9 +4278,8 @@ var StaticTVClient = class {
|
|
|
4278
4278
|
}
|
|
4279
4279
|
if (hasCallback) {
|
|
4280
4280
|
this.config.onVideoPlay(video.src);
|
|
4281
|
-
|
|
4282
|
-
|
|
4283
|
-
}
|
|
4281
|
+
this._streamVerified = true;
|
|
4282
|
+
this._pendingVideoData = null;
|
|
4284
4283
|
}
|
|
4285
4284
|
if (this.guideUI) {
|
|
4286
4285
|
this.guideUI.currentVideoId = video.id;
|
package/package.json
CHANGED