|
|
@@ -2509,6 +2509,9 @@ export default {
|
|
2509
|
2509
|
requestFeedbackPromise,
|
|
2510
|
2510
|
this.leaveRoomAndDisconnect()
|
|
2511
|
2511
|
]).then(values => {
|
|
|
2512
|
+ this._room = undefined;
|
|
|
2513
|
+ room = undefined;
|
|
|
2514
|
+
|
|
2512
|
2515
|
APP.API.notifyReadyToClose();
|
|
2513
|
2516
|
maybeRedirectToWelcomePage(values[0]);
|
|
2514
|
2517
|
});
|
|
|
@@ -2523,11 +2526,7 @@ export default {
|
|
2523
|
2526
|
APP.store.dispatch(conferenceWillLeave(room));
|
|
2524
|
2527
|
|
|
2525
|
2528
|
return room.leave()
|
|
2526
|
|
- .then(disconnect, disconnect)
|
|
2527
|
|
- .then(() => {
|
|
2528
|
|
- this._room = undefined;
|
|
2529
|
|
- room = undefined;
|
|
2530
|
|
- });
|
|
|
2529
|
+ .then(disconnect, disconnect);
|
|
2531
|
2530
|
},
|
|
2532
|
2531
|
|
|
2533
|
2532
|
/**
|