@thestatic-tv/dcl-sdk 2.5.9 → 2.5.10
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3893,7 +3893,7 @@ var StaticTVClient = class {
|
|
|
3893
3893
|
this.log(`Stream verification timeout for: ${this._pendingVideoData.name}`);
|
|
3894
3894
|
this._handleStreamOffline();
|
|
3895
3895
|
}
|
|
3896
|
-
},
|
|
3896
|
+
}, 5e3);
|
|
3897
3897
|
}
|
|
3898
3898
|
/**
|
|
3899
3899
|
* Handle stream that's offline or failed to verify
|
package/dist/index.mjs
CHANGED
|
@@ -3850,7 +3850,7 @@ var StaticTVClient = class {
|
|
|
3850
3850
|
this.log(`Stream verification timeout for: ${this._pendingVideoData.name}`);
|
|
3851
3851
|
this._handleStreamOffline();
|
|
3852
3852
|
}
|
|
3853
|
-
},
|
|
3853
|
+
}, 5e3);
|
|
3854
3854
|
}
|
|
3855
3855
|
/**
|
|
3856
3856
|
* Handle stream that's offline or failed to verify
|
package/package.json
CHANGED