aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mm-iface-modem-time.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mm-iface-modem-time.c b/src/mm-iface-modem-time.c
index 41ca2f0e..f0c1fea6 100644
--- a/src/mm-iface-modem-time.c
+++ b/src/mm-iface-modem-time.c
@@ -327,12 +327,13 @@ update_network_timezone (MMIfaceModemTime *self,
/* If loading network timezone not supported, just finish here */
if (!MM_IFACE_MODEM_TIME_GET_INTERFACE (self)->load_network_timezone ||
!MM_IFACE_MODEM_TIME_GET_INTERFACE (self)->load_network_timezone_finish) {
- g_simple_async_report_error_in_idle (G_OBJECT (self),
- callback,
- user_data,
- MM_CORE_ERROR,
- MM_CORE_ERROR_UNSUPPORTED,
- "Loading network timezone is not supported");
+ g_task_report_new_error (self,
+ callback,
+ user_data,
+ update_network_timezone,
+ MM_CORE_ERROR,
+ MM_CORE_ERROR_UNSUPPORTED,
+ "Loading network timezone is not supported");
return;
}