mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-26 15:05:44 +03:00
Return without further processing if the call is remotely ended
If the call is hung up with a view shutdown (which finishes the activity) there is no need to do any further processing on the participant list. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
379ec8eae8
commit
8cdcc63687
1 changed files with 2 additions and 0 deletions
|
@ -1879,6 +1879,8 @@ public class CallActivity extends CallBaseActivity {
|
|||
if (inCallFlag == 0 && currentCallStatus != CallStatus.LEAVING && ApplicationWideCurrentRoomHolder.getInstance().isInCall()) {
|
||||
Log.d(TAG, "Most probably a moderator ended the call for all.");
|
||||
hangup(true);
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue