1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-28 06:39:32 +00:00

record-row: Avoid raising critical

When the record has a NULL id there won't be a CallsBestMatch we can use to bind
properties.
This commit is contained in:
Evangelos Ribeiro Tzaras 2022-03-04 10:39:11 +01:00
parent 1593625373
commit 134c4af9c7

View file

@ -294,11 +294,16 @@ on_notify_can_add_contacts (CallsCallRecordRow *self)
if (!calls_contacts_provider_get_can_add_contacts (contacts_provider))
return;
g_signal_handlers_disconnect_by_data(contacts_provider, self);
/* The record has a NULL id */
if (!self->contact)
return;
g_object_bind_property (self->contact, "has-individual",
action_new_contact, "enabled",
G_BINDING_SYNC_CREATE |
G_BINDING_INVERT_BOOLEAN);
g_signal_handlers_disconnect_by_data(contacts_provider, self);
}