1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-23 12:05:33 +00:00

best-match: Allow both NULL and empty strings as phone number

This allows us to get rid of some special casing when retrieving
primary and secondary display information.
This commit is contained in:
Evangelos Ribeiro Tzaras 2023-04-10 10:09:10 +02:00
parent 94cfbd83b2
commit 3fb016f6b2

View file

@ -365,12 +365,11 @@ calls_best_match_set_phone_number (CallsBestMatch *self,
g_autoptr (CallsPhoneNumberQuery) query = NULL;
g_return_if_fail (CALLS_IS_BEST_MATCH (self));
g_return_if_fail (phone_number);
g_clear_pointer (&self->phone_number, g_free);
// Consider empty string phone numbers as NULL
if (phone_number[0] != '\0')
if (!STR_IS_NULL_OR_EMPTY (phone_number))
self->phone_number = g_strdup (phone_number);
if (self->view)