fix: invert condition for creating voipPlugin
This commit is contained in:
parent
4a8773c67b
commit
f9bb2715b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue