diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-11 23:01:04 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-12-26 10:12:05 +0100 |
commit | 0d0ad722d9da2039ad71ece9c8ae4b1786c7f757 (patch) | |
tree | d9076b44272057e490bedf8bd9049b2a59d44b5a /src/mm-broadband-modem.c | |
parent | f97957046b6861631483b778945ebaf5f083f70d (diff) |
iface-modem-3gpp-profile-manager: initialize the 'IndexField' property
Diffstat (limited to 'src/mm-broadband-modem.c')
-rw-r--r-- | src/mm-broadband-modem.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mm-broadband-modem.c b/src/mm-broadband-modem.c index a5f46fd7..28a17401 100644 --- a/src/mm-broadband-modem.c +++ b/src/mm-broadband-modem.c @@ -10184,9 +10184,15 @@ modem_signal_load_values (MMIfaceModemSignal *self, static gboolean modem_3gpp_profile_manager_check_support_finish (MMIfaceModem3gppProfileManager *self, GAsyncResult *res, + gchar **index_field, GError **error) { - return g_task_propagate_boolean (G_TASK (res), error); + if (g_task_propagate_boolean (G_TASK (res), error)) { + *index_field = g_strdup ("profile-id");; + return TRUE; + } + + return FALSE; } static void |