flutter: fix End connetion typo (#16202)

Co-authored-by: Elyor1977 <elyor77q@gmail.com>
This commit is contained in:
Elyor
2026-09-14 07:23:33 +05:00
committed by GitHub
parent 70d45051f6
commit 8b716c7046
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ class _RemotePageState extends State<RemotePage> with WidgetsBindingObserver {
// `on_voice_call_closed` should be called when the connection is ended.
// The inner logic of `on_voice_call_closed` will check if the voice call is active.
// Only one client is considered here for now.
gFFI.chatModel.onVoiceCallClosed("End connetion");
gFFI.chatModel.onVoiceCallClosed("End connection");
}
@override

View File

@@ -141,7 +141,7 @@ class _ViewCameraPageState extends State<ViewCameraPage>
// `on_voice_call_closed` should be called when the connection is ended.
// The inner logic of `on_voice_call_closed` will check if the voice call is active.
// Only one client is considered here for now.
gFFI.chatModel.onVoiceCallClosed("End connetion");
gFFI.chatModel.onVoiceCallClosed("End connection");
}
@override