Эх сурвалжийг харах

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>
Daniel Calviño Sánchez 2 жил өмнө
parent
commit
8cdcc63687

+ 2 - 0
app/src/main/java/com/nextcloud/talk/activities/CallActivity.java

@@ -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;
                 }
             }
         }