vani-meeting-client 0.6.3 → 0.6.4
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/lib/MeetingHandler.js +3 -2
- package/package.json +1 -1
package/lib/MeetingHandler.js
CHANGED
|
@@ -311,9 +311,10 @@ var MeetingHandler = /** @class */ (function () {
|
|
|
311
311
|
return [];
|
|
312
312
|
};
|
|
313
313
|
MeetingHandler.prototype.isWebScoketConnected = function () {
|
|
314
|
-
var _a;
|
|
314
|
+
var _a, _b;
|
|
315
|
+
console.log("Room Id", (_a = this.meetingStartRequest) === null || _a === void 0 ? void 0 : _a.roomId);
|
|
315
316
|
if (this.websocketCallHandler) {
|
|
316
|
-
return (
|
|
317
|
+
return (_b = this.websocketCallHandler) === null || _b === void 0 ? void 0 : _b.isWebScoketConnected();
|
|
317
318
|
}
|
|
318
319
|
return false;
|
|
319
320
|
};
|