Merge branch 'main' into krille/implement-jitsi
This commit is contained in:
commit
19d8ceae03
14 changed files with 59 additions and 36 deletions
|
|
@ -2807,4 +2807,4 @@
|
|||
"skipSupportingFluffyChat": "FluffyChat unterstützen überspringen",
|
||||
"iDoNotWantToSupport": "Ich möchte nicht unterstützen",
|
||||
"iAlreadySupportFluffyChat": "I unterstütze FluffyChat bereits"
|
||||
}
|
||||
}
|
||||
|
|
@ -2790,7 +2790,6 @@
|
|||
"iAlreadySupportFluffyChat": "I already support FluffyChat",
|
||||
"setLowPriority": "Set low priority",
|
||||
"unsetLowPriority": "Unset low priority",
|
||||
"jitsiGroupCalls": "Jitsi group calls",
|
||||
"removeCallFromChat": "Remove call from chat",
|
||||
"removeCallFromChatDescription": "Do you want to remove the call from the chat for all members?",
|
||||
"removeCallForEveryone": "Remove call for everyone",
|
||||
|
|
@ -2799,4 +2798,4 @@
|
|||
"joinVoiceCall": "Join voice call",
|
||||
"joinVideoCall": "Join video call",
|
||||
"live": "Live"
|
||||
}
|
||||
}
|
||||
|
|
@ -2801,4 +2801,4 @@
|
|||
"iDoNotWantToSupport": "Ma ei soovi toetada",
|
||||
"setLowPriority": "Märgi vähetähtsaks",
|
||||
"unsetLowPriority": "Eemalda märkimine vähetähtsaks"
|
||||
}
|
||||
}
|
||||
|
|
@ -2807,4 +2807,4 @@
|
|||
"iAlreadySupportFluffyChat": "Tacaím le FluffyChat cheana féin",
|
||||
"setLowPriority": "Socraigh tosaíocht íseal",
|
||||
"unsetLowPriority": "Díshuiteáil tosaíocht íseal"
|
||||
}
|
||||
}
|
||||
|
|
@ -2801,4 +2801,4 @@
|
|||
"iAlreadySupportFluffyChat": "Xa apoiei a FluffyChat",
|
||||
"setLowPriority": "Establecer prioridade baixa",
|
||||
"unsetLowPriority": "Non establecer prioridade baixa"
|
||||
}
|
||||
}
|
||||
|
|
@ -2808,4 +2808,4 @@
|
|||
"iAlreadySupportFluffyChat": "Jeg støtter allerede FluffyChat",
|
||||
"setLowPriority": "Sett lav prioritet",
|
||||
"unsetLowPriority": "Fjern lav prioritet"
|
||||
}
|
||||
}
|
||||
|
|
@ -2800,4 +2800,4 @@
|
|||
"support": "Steunen",
|
||||
"setLowPriority": "Lage prioriteit instellen",
|
||||
"unsetLowPriority": "Lage prioriteit uitschakelen"
|
||||
}
|
||||
}
|
||||
|
|
@ -2801,4 +2801,4 @@
|
|||
"iAlreadySupportFluffyChat": "我已支持 FluffyChat",
|
||||
"setLowPriority": "设置低优先级",
|
||||
"unsetLowPriority": "取消设置低优先级"
|
||||
}
|
||||
}
|
||||
|
|
@ -553,6 +553,7 @@ class ChatController extends State<ChatPageWithRoom>
|
|||
timeline?.cancelSubscriptions();
|
||||
timeline = null;
|
||||
inputFocus.removeListener(_inputFocusListener);
|
||||
if (currentlyTyping) room.setTyping(false);
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
|
|
@ -1289,6 +1290,7 @@ class ChatController extends State<ChatPageWithRoom>
|
|||
if (AppSettings.sendTypingNotifications.value) {
|
||||
typingCoolDown?.cancel();
|
||||
typingCoolDown = Timer(const Duration(seconds: 2), () {
|
||||
if (!mounted) return;
|
||||
typingCoolDown = null;
|
||||
currentlyTyping = false;
|
||||
room.setTyping(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue