Merge branch 'main' into krille/implement-jitsi

This commit is contained in:
Krille-chan 2026-03-21 11:09:42 +01:00 committed by Christian Kußowski
commit 19d8ceae03
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
14 changed files with 59 additions and 36 deletions

View file

@ -2807,4 +2807,4 @@
"skipSupportingFluffyChat": "FluffyChat unterstützen überspringen",
"iDoNotWantToSupport": "Ich möchte nicht unterstützen",
"iAlreadySupportFluffyChat": "I unterstütze FluffyChat bereits"
}
}

View file

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

View file

@ -2801,4 +2801,4 @@
"iDoNotWantToSupport": "Ma ei soovi toetada",
"setLowPriority": "Märgi vähetähtsaks",
"unsetLowPriority": "Eemalda märkimine vähetähtsaks"
}
}

View file

@ -2807,4 +2807,4 @@
"iAlreadySupportFluffyChat": "Tacaím le FluffyChat cheana féin",
"setLowPriority": "Socraigh tosaíocht íseal",
"unsetLowPriority": "Díshuiteáil tosaíocht íseal"
}
}

View file

@ -2801,4 +2801,4 @@
"iAlreadySupportFluffyChat": "Xa apoiei a FluffyChat",
"setLowPriority": "Establecer prioridade baixa",
"unsetLowPriority": "Non establecer prioridade baixa"
}
}

View file

@ -2808,4 +2808,4 @@
"iAlreadySupportFluffyChat": "Jeg støtter allerede FluffyChat",
"setLowPriority": "Sett lav prioritet",
"unsetLowPriority": "Fjern lav prioritet"
}
}

View file

@ -2800,4 +2800,4 @@
"support": "Steunen",
"setLowPriority": "Lage prioriteit instellen",
"unsetLowPriority": "Lage prioriteit uitschakelen"
}
}

View file

@ -2801,4 +2801,4 @@
"iAlreadySupportFluffyChat": "我已支持 FluffyChat",
"setLowPriority": "设置低优先级",
"unsetLowPriority": "取消设置低优先级"
}
}

View file

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