mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-21 12:39:58 +01:00
Fix connections
This commit is contained in:
parent
6e4d93a5c1
commit
d221958931
@ -1482,7 +1482,14 @@ public class CallController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for (String sessionId : newSessions) {
|
for (String sessionId : newSessions) {
|
||||||
alwaysGetPeerConnectionWrapperForSessionId(sessionId, false);
|
if (externalSignalingServer != null && webSocketClient.hasMCU()) {
|
||||||
|
if (!sessionId.equals(webSocketClient.getSessionId())) {
|
||||||
|
alwaysGetPeerConnectionWrapperForSessionId(sessionId, false);
|
||||||
|
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
alwaysGetPeerConnectionWrapperForSessionId(sessionId, false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (String sessionId : oldSesssions) {
|
for (String sessionId : oldSesssions) {
|
||||||
|
Loading…
Reference in New Issue
Block a user