diff options
author | fiaxh <git@lightrise.org> | 2022-02-06 23:48:58 +0100 |
---|---|---|
committer | fiaxh <git@lightrise.org> | 2022-02-07 01:21:11 +0100 |
commit | 29d1abccac205189d4ef1d5692493774b7af4bea (patch) | |
tree | 4135b739562e5979f309adee4a45c5af1223d7a7 /main | |
parent | 071d925e370b2238a9804733a484fe4ec9432f44 (diff) | |
download | dino-29d1abccac205189d4ef1d5692493774b7af4bea.tar.gz dino-29d1abccac205189d4ef1d5692493774b7af4bea.zip |
Support direct jingle call invites with call invite messages
Diffstat (limited to 'main')
-rw-r--r-- | main/src/ui/call_window/call_window_controller.vala | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/main/src/ui/call_window/call_window_controller.vala b/main/src/ui/call_window/call_window_controller.vala index ebf8774a..94d6e890 100644 --- a/main/src/ui/call_window/call_window_controller.vala +++ b/main/src/ui/call_window/call_window_controller.vala @@ -271,9 +271,12 @@ public class Dino.Ui.CallWindowController : Object { private void update_audio_device_choices() { if (call_plugin.get_devices("audio", true).size == 0 || call_plugin.get_devices("audio", false).size == 0) { call_window.bottom_bar.show_audio_device_error(); - } else if (call_plugin.get_devices("audio", true).size == 1 && call_plugin.get_devices("audio", false).size == 1) { + } /*else if (call_plugin.get_devices("audio", true).size == 1 && call_plugin.get_devices("audio", false).size == 1) { call_window.bottom_bar.show_audio_device_choices(false); return; + }*/ else { + call_window.bottom_bar.show_video_device_choices(false); + return; } AudioSettingsPopover? audio_settings_popover = call_window.bottom_bar.show_audio_device_choices(true); @@ -304,7 +307,10 @@ public class Dino.Ui.CallWindowController : Object { if (device_count == 0) { call_window.bottom_bar.show_video_device_error(); - } else if (device_count == 1 || call_state.get_video_device() == null) { + } /*else if (device_count == 1 || call_state.get_video_device() == null) { + call_window.bottom_bar.show_video_device_choices(false); + return; + }*/ else { call_window.bottom_bar.show_video_device_choices(false); return; } |