From 99dfbcbc4ea3fec8d5a9866cd80285c12ecdc29c Mon Sep 17 00:00:00 2001 From: James Booth Date: Tue, 9 Sep 2014 23:37:51 +0100 Subject: [PATCH] Removed destroy room id handler from generic handlers --- src/xmpp/iq.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c index 2224173e..8dc86080 100644 --- a/src/xmpp/iq.c +++ b/src/xmpp/iq.c @@ -99,8 +99,6 @@ iq_add_handlers(void) HANDLE(STANZA_NS_PING, STANZA_TYPE_GET, _ping_get_handler); - HANDLE(NULL, STANZA_TYPE_RESULT, _destroy_room_result_handler); - if (prefs_get_autoping() != 0) { int millis = prefs_get_autoping() * 1000; xmpp_timed_handler_add(conn, _ping_timed_handler, millis, ctx);