Renamed ui_handle_room_role_list_error -> mucwin_role_list_error

This commit is contained in:
James Booth
2015-11-01 21:48:28 +00:00
parent 381bce385f
commit 2cc5f17871
4 changed files with 4 additions and 4 deletions

View File

@@ -1390,7 +1390,7 @@ _room_role_list_result_handler(xmpp_conn_t *const conn, xmpp_stanza_t *const sta
if (g_strcmp0(type, STANZA_TYPE_ERROR) == 0) {
char *error_message = stanza_get_error_message(stanza);
log_debug("Error retrieving %s list for room %s: %s", role, from, error_message);
ui_handle_room_role_list_error(from, role, error_message);
mucwin_role_list_error(from, role, error_message);
free(error_message);
free(role);
return 0;