Merge pull request #2707 from Aegeontis/patch-1

Small fix: Invert condition for creating voipPlugin
This commit is contained in:
Krille-chan 2026-03-15 07:05:35 +01:00 committed by GitHub
commit 8aee82dd6f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -339,7 +339,7 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
}
Future<void> createVoipPlugin() async {
if (AppSettings.experimentalVoip.value) {
if (!AppSettings.experimentalVoip.value) {
voipPlugin = null;
return;
}