1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-06 03:25:31 +00:00

sip: origin: fix direct connection case

This commit is contained in:
Evangelos Ribeiro Tzaras 2021-02-25 10:29:35 +01:00
parent c9949a5f9f
commit 706a667547

View file

@ -510,8 +510,8 @@ init_sip_account (CallsSipOrigin *self,
g_return_val_if_fail (CALLS_IS_SIP_ORIGIN (self), FALSE);
if (self->use_direct_connection && !is_account_complete (self)) {
g_debug ("Account not set yet. Using user and hostname");
if (self->use_direct_connection) {
g_debug ("Direct connection case. Using user and hostname");
setup_account_for_direct_connection (self);
}