Skip to content
Snippets Groups Projects
Commit feff2cfd authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

fix: Disable starting AV calls on Windows

Establishing calls on Windows is not possible at the moment due to issues with libnice
parent 5ecf5a35
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@
import time
import logging
import sys
from gi.repository import Gtk
from gi.repository import Gio
......@@ -212,7 +213,8 @@ def update_actions(self) -> None:
audio_available = self._call_widget.get_jingle_available('audio')
video_available = self._call_widget.get_jingle_available('video')
self._get_action('start-call-').set_enabled(
online and (audio_available or video_available))
online and (audio_available or video_available)
and sys.platform != 'win32')
# Send message
has_text = self.msg_textview.has_text()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment