Merge pull request #2707 from Aegeontis/patch-1
Small fix: Invert condition for creating voipPlugin
This commit is contained in:
commit
8aee82dd6f
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