aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-07-22 11:14:41 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-07-22 13:33:07 +0200
commitdd8dcbb899c27041f856ecdb633ed0aa0db6442b (patch)
tree82616ca066abca9afc51e4fe605daebbb3f62ea9 /src
parent2146553c5971e55ae0544852b6be4389e7590334 (diff)
messaging: don't treat as fatal error if we cannot read from a given storage
Diffstat (limited to 'src')
-rw-r--r--src/mm-iface-modem-messaging.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mm-iface-modem-messaging.c b/src/mm-iface-modem-messaging.c
index b294af93..2cc260c4 100644
--- a/src/mm-iface-modem-messaging.c
+++ b/src/mm-iface-modem-messaging.c
@@ -745,9 +745,10 @@ load_initial_sms_parts_ready (MMIfaceModemMessaging *self,
MM_IFACE_MODEM_MESSAGING_GET_INTERFACE (self)->load_initial_sms_parts_finish (self, res, &error);
if (error) {
- g_simple_async_result_take_error (ctx->result, error);
- enabling_context_complete_and_free (ctx);
- return;
+ mm_dbg ("Couldn't load SMS parts from storage '%s': '%s'",
+ mm_sms_storage_get_string (ctx->mem1_storage_index),
+ error->message);
+ g_error_free (error);
}
/* Go on with the storage iteration */