diff options
author | James Booth <boothj5@gmail.com> | 2012-11-19 21:25:00 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2012-11-19 21:25:00 +0000 |
commit | db15494e2289bcf6c07a4b4e71e0a3791569236d (patch) | |
tree | 9c57a78b468db8e6e5f9664604011b4595185ceb | |
parent | 2cdd1b3810324ec9873437781001b528177e61c4 (diff) | |
download | profani-tty-db15494e2289bcf6c07a4b4e71e0a3791569236d.tar.gz |
Fixed workaround for old server self room presence check
-rw-r--r-- | src/stanza.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stanza.c b/src/stanza.c index cbd1ae0d..ba3e0b16 100644 --- a/src/stanza.c +++ b/src/stanza.c @@ -278,6 +278,7 @@ stanza_is_muc_self_presence(xmpp_stanza_t * const stanza, } // for older server that don't send status 110 + x_children = xmpp_stanza_get_children(x); while (x_children != NULL) { if (strcmp(xmpp_stanza_get_name(x_children), STANZA_NAME_ITEM) == 0) { char *jid = xmpp_stanza_get_attribute(x_children, STANZA_ATTR_JID); |