1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Check for mucwin before showing room in roster

This commit is contained in:
James Booth 2016-01-02 01:45:02 +00:00
parent 254c83d2d1
commit f9d89d564f

View File

@ -429,7 +429,9 @@ _rosterwin_rooms(ProfLayoutSplit *layout, gboolean newline)
GList *curr_room = rooms;
while (curr_room) {
ProfMucWin *mucwin = wins_get_muc(curr_room->data);
if (mucwin) {
_rosterwin_room(layout, mucwin);
}
curr_room = g_list_next(curr_room);
}
}