1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-09-29 15:25:24 +00:00

sip-origin: Notify on account property updates

The UI does not have a chance to react otherwise.
This commit is contained in:
Evangelos Ribeiro Tzaras 2022-05-21 18:26:11 +02:00
parent c1be092dea
commit 47d252eb8b

View file

@ -883,6 +883,8 @@ setup_nua (CallsSipOrigin *self)
self->address = g_strconcat (self->user, "@", self->host, NULL);
from_str = g_strconcat (self->protocol_prefix, ":", self->address, NULL);
g_object_notify_by_pspec(G_OBJECT (self), props[PROP_ACC_ADDRESS]);
use_sips = check_sips (from_str);
use_ipv6 = check_ipv6 (self->host);
@ -1638,5 +1640,7 @@ calls_sip_origin_set_credentials (CallsSipOrigin *self,
self->can_tel = can_tel;
update_name (self);
recreate_sip (self);
}