|
@@ -228,14 +228,17 @@ export default class ProxyConnectionPC {
|
228
|
228
|
|
229
|
229
|
return {};
|
230
|
230
|
},
|
231
|
|
- removePresenceListener: () => { /** no-op */ }
|
|
231
|
+ removePresenceListener: () => { /** no-op */ },
|
|
232
|
+ supportsRestartByTerminate: () => false
|
232
|
233
|
};
|
233
|
234
|
|
234
|
235
|
/**
|
235
|
236
|
* A {@code JitsiConference} stub passed to the {@link RTC} module.
|
236
|
237
|
* @type {Object}
|
237
|
238
|
*/
|
238
|
|
- const conferenceStub = {};
|
|
239
|
+ const conferenceStub = {
|
|
240
|
+ myUserId: () => ''
|
|
241
|
+ };
|
239
|
242
|
|
240
|
243
|
/**
|
241
|
244
|
* Create an instance of {@code RTC} as it is required for peer
|