WIP: feat/upstream-sync #104

Closed
jabber.developer2 wants to merge 54 commits from feat/upstream-sync into master
28 changed files with 554 additions and 163 deletions
Showing only changes of commit f6b2347811 - Show all commits

View File

@@ -817,7 +817,12 @@ _muc_user_self_handler(xmpp_stanza_t* stanza)
affiliation = xmpp_stanza_get_attribute(item, "affiliation");
}
}
sv_ev_muc_self_online(room, nick, config_required, role, affiliation, actor, reason, jid, show_str, status_str);
if (muc_active(room)) {
sv_ev_muc_self_online(room, nick, config_required, role, affiliation, actor, reason, jid, show_str, status_str);
} else {
log_debug("presence: self-presence received for untracked room: %s", room);
}
}
}