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