feat: Enable beta videocalls for linux

This commit is contained in:
krille-chan 2023-08-13 18:21:55 +02:00
commit e229a0450f
No known key found for this signature in database
2 changed files with 12 additions and 20 deletions

View file

@ -78,12 +78,6 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
return widget.clients[_activeClient];
}
bool get webrtcIsSupported =>
kIsWeb ||
PlatformInfos.isMobile ||
PlatformInfos.isWindows ||
PlatformInfos.isMacOS;
VoipPlugin? voipPlugin;
bool get isMultiAccount => widget.clients.length > 1;
@ -406,7 +400,7 @@ class MatrixState extends State<Matrix> with WidgetsBindingObserver {
voipPlugin = null;
return;
}
voipPlugin = webrtcIsSupported ? VoipPlugin(this) : null;
voipPlugin = VoipPlugin(this);
}
@override