diff options
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/commands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/command/commands.c b/src/command/commands.c index cab92ef7..3910af34 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -1209,15 +1209,15 @@ _who_room(ProfWin *window, const char *const command, gchar **args) // role or affiliation filter } else { if (g_strcmp0(args[0], "moderator") == 0) { - ui_show_room_role_list(mucwin, MUC_ROLE_MODERATOR); + mucwin_show_role_list(mucwin, MUC_ROLE_MODERATOR); return; } if (g_strcmp0(args[0], "participant") == 0) { - ui_show_room_role_list(mucwin, MUC_ROLE_PARTICIPANT); + mucwin_show_role_list(mucwin, MUC_ROLE_PARTICIPANT); return; } if (g_strcmp0(args[0], "visitor") == 0) { - ui_show_room_role_list(mucwin, MUC_ROLE_VISITOR); + mucwin_show_role_list(mucwin, MUC_ROLE_VISITOR); return; } |