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

fix typo

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
Marcel Hibbe 3 жил өмнө
parent
commit
b3b8c867f7

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

@@ -1625,13 +1625,13 @@ public class CallActivity extends CallBaseActivity {
 
 
         // The signaling session is the same as the Nextcloud session only when the MCU is not used.
-        String currentSessiondId = callSession;
+        String currentSessionId = callSession;
         if (hasMCU) {
-            currentSessiondId = webSocketClient.getSessionId();
+            currentSessionId = webSocketClient.getSessionId();
         }
 
         for (HashMap<String, Object> participant : users) {
-            if (!participant.get("sessionId").equals(currentSessiondId)) {
+            if (!participant.get("sessionId").equals(currentSessionId)) {
                 Object inCallObject = participant.get("inCall");
                 boolean isNewSession;
                 if (inCallObject instanceof Boolean) {