mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Tidy sv_ev_muc_self_online
This commit is contained in:
parent
6ea9314f98
commit
22cd5b433f
@ -585,30 +585,22 @@ sv_ev_muc_self_online(const char *const room, const char *const nick, gboolean c
|
|||||||
|
|
||||||
// check for change in role/affiliation
|
// check for change in role/affiliation
|
||||||
} else {
|
} else {
|
||||||
if (prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
ProfMucWin *mucwin = wins_get_muc(room);
|
||||||
|
if (mucwin && prefs_get_boolean(PREF_MUC_PRIVILEGES)) {
|
||||||
// both changed
|
// both changed
|
||||||
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
|
if ((g_strcmp0(role, old_role) != 0) && (g_strcmp0(affiliation, old_affiliation) != 0)) {
|
||||||
ProfMucWin *mucwin = wins_get_muc(room);
|
|
||||||
if (mucwin) {
|
|
||||||
mucwin_role_and_affiliation_change(mucwin, role, affiliation, actor, reason);
|
mucwin_role_and_affiliation_change(mucwin, role, affiliation, actor, reason);
|
||||||
}
|
|
||||||
|
|
||||||
// role changed
|
// role changed
|
||||||
} else if (g_strcmp0(role, old_role) != 0) {
|
} else if (g_strcmp0(role, old_role) != 0) {
|
||||||
ProfMucWin *mucwin = wins_get_muc(room);
|
|
||||||
if (mucwin) {
|
|
||||||
mucwin_role_change(mucwin, role, actor, reason);
|
mucwin_role_change(mucwin, role, actor, reason);
|
||||||
}
|
|
||||||
|
|
||||||
// affiliation changed
|
// affiliation changed
|
||||||
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
|
} else if (g_strcmp0(affiliation, old_affiliation) != 0) {
|
||||||
ProfMucWin *mucwin = wins_get_muc(room);
|
|
||||||
if (mucwin) {
|
|
||||||
mucwin_affiliation_change(mucwin, affiliation, actor, reason);
|
mucwin_affiliation_change(mucwin, affiliation, actor, reason);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
occupantswin_occupants(room);
|
occupantswin_occupants(room);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user