@reactoo/watchtogether-sdk-js 2.8.42 → 2.8.43

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": "@reactoo/watchtogether-sdk-js",
3
- "version": "2.8.42",
3
+ "version": "2.8.43",
4
4
  "description": "Javascript SDK for Reactoo",
5
5
  "main": "dist/watchtogether-sdk.min.js",
6
6
  "module": "dist/watchtogether-sdk.min.js",
@@ -663,7 +663,11 @@ class RoomSession {
663
663
 
664
664
 
665
665
  // added sanity check
666
- await this.#availablePublishersSanityCheck();
666
+ try {
667
+ await this.#availablePublishersSanityCheck();
668
+ }
669
+ catch (e) {}
670
+
667
671
 
668
672
  // no subscription yet, we create one and subscribe to relevant participants
669
673