about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-28 22:37:50 +0000
committerJames Booth <boothj5@gmail.com>2014-01-28 22:37:50 +0000
commit5afb296e67785725e4462358fcc227e5f28b1a46 (patch)
treeb6aa5b3d87369a9680df51a6f09037d22a3a9faf /src/xmpp
parentb231133f9b07e76eb7c3d6df4f01ceb14bcc3cd5 (diff)
downloadprofani-tty-5afb296e67785725e4462358fcc227e5f28b1a46.tar.gz
Moved error handling logic to server_events
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/message.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/xmpp/message.c b/src/xmpp/message.c
index 5ea54f2d..5a7e9075 100644
--- a/src/xmpp/message.c
+++ b/src/xmpp/message.c
@@ -224,18 +224,7 @@ _message_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
 
     g_string_free(log_msg, TRUE);
 
-    // handle recipient not found ('from' contains a value and type is 'cancel')
-    if ((from != NULL) && ((type != NULL && (strcmp(type, "cancel") == 0)))) {
-        handle_recipient_not_found(from, err_msg);
-
-    // handle any other error from recipient
-    } else if (from != NULL) {
-        handle_recipient_error(from, err_msg);
-
-    // handle errors from no recipient
-    } else {
-        handle_error(err_msg);
-    }
+    handle_message_error(from, type, err_msg);
 
     free(err_msg);