Merge pull request #2601 from nextcloud/fix-reconnection-when-the-web-socket-was-abruptly-closed

Fix reconnection when the web socket was abruptly closed
This commit is contained in:
Marcel Hibbe 2022-12-02 08:13:18 +01:00 committed by GitHub
commit 674e47b8fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1578,7 +1578,8 @@ public class CallActivity extends CallBaseActivity {
if (currentCallStatus == CallStatus.RECONNECTING) {
hangup(false);
} else {
initiateCall();
setCallState(CallStatus.RECONNECTING);
runOnUiThread(this::initiateCall);
}
}
break;