mirror of
https://github.com/profanity-im/profanity.git
synced 2024-11-03 19:37:16 -05:00
mucwin_affiliation_list_error takes ProfMucWin
This commit is contained in:
parent
2e81a4efa3
commit
d81dbdb233
@ -527,13 +527,13 @@ mucwin_broadcast(ProfMucWin *mucwin, const char *const message)
|
|||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
mucwin_affiliation_list_error(const char *const roomjid, const char *const affiliation,
|
mucwin_affiliation_list_error(ProfMucWin *mucwin, const char *const affiliation,
|
||||||
const char *const error)
|
const char *const error)
|
||||||
{
|
{
|
||||||
ProfWin *window = (ProfWin*)wins_get_muc(roomjid);
|
assert(mucwin != NULL);
|
||||||
if (window) {
|
|
||||||
win_vprint(window, '!', 0, NULL, 0, THEME_ERROR, "", "Error retrieving %s list: %s", affiliation, error);
|
ProfWin *window = (ProfWin*)mucwin;
|
||||||
}
|
win_vprint(window, '!', 0, NULL, 0, THEME_ERROR, "", "Error retrieving %s list: %s", affiliation, error);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -197,8 +197,7 @@ void mucwin_occupant_presence(ProfMucWin *mucwin, const char *const nick, const
|
|||||||
void mucwin_update_occupants(const char *const roomjid);
|
void mucwin_update_occupants(const char *const roomjid);
|
||||||
void mucwin_show_occupants(const char *const roomjid);
|
void mucwin_show_occupants(const char *const roomjid);
|
||||||
void mucwin_hide_occupants(const char *const roomjid);
|
void mucwin_hide_occupants(const char *const roomjid);
|
||||||
void mucwin_affiliation_list_error(const char *const roomjid, const char *const affiliation,
|
void mucwin_affiliation_list_error(ProfMucWin *mucwin, const char *const affiliation, const char *const error);
|
||||||
const char *const error);
|
|
||||||
void mucwin_handle_affiliation_list(const char *const roomjid, const char *const affiliation, GSList *jids);
|
void mucwin_handle_affiliation_list(const char *const roomjid, const char *const affiliation, GSList *jids);
|
||||||
void mucwin_affiliation_set_error(const char *const roomjid, const char *const jid,
|
void mucwin_affiliation_set_error(const char *const roomjid, const char *const jid,
|
||||||
const char *const affiliation, const char *const error);
|
const char *const affiliation, const char *const error);
|
||||||
|
@ -1343,7 +1343,10 @@ _room_affiliation_list_result_handler(xmpp_conn_t *const conn, xmpp_stanza_t *co
|
|||||||
if (g_strcmp0(type, STANZA_TYPE_ERROR) == 0) {
|
if (g_strcmp0(type, STANZA_TYPE_ERROR) == 0) {
|
||||||
char *error_message = stanza_get_error_message(stanza);
|
char *error_message = stanza_get_error_message(stanza);
|
||||||
log_debug("Error retrieving %s list for room %s: %s", affiliation, from, error_message);
|
log_debug("Error retrieving %s list for room %s: %s", affiliation, from, error_message);
|
||||||
mucwin_affiliation_list_error(from, affiliation, error_message);
|
ProfMucWin *mucwin = wins_get_muc(from);
|
||||||
|
if (mucwin) {
|
||||||
|
mucwin_affiliation_list_error(mucwin, affiliation, error_message);
|
||||||
|
}
|
||||||
free(error_message);
|
free(error_message);
|
||||||
free(affiliation);
|
free(affiliation);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -271,8 +271,7 @@ void ui_handle_room_configuration(const char * const roomjid, DataForm *form) {}
|
|||||||
void ui_handle_room_configuration_form_error(const char * const roomjid, const char * const message) {}
|
void ui_handle_room_configuration_form_error(const char * const roomjid, const char * const message) {}
|
||||||
void ui_handle_room_config_submit_result(const char * const roomjid) {}
|
void ui_handle_room_config_submit_result(const char * const roomjid) {}
|
||||||
void ui_handle_room_config_submit_result_error(const char * const roomjid, const char * const message) {}
|
void ui_handle_room_config_submit_result_error(const char * const roomjid, const char * const message) {}
|
||||||
void mucwin_affiliation_list_error(const char * const roomjid, const char * const affiliation,
|
void mucwin_affiliation_list_error(ProfMucWin *mucwin, const char * const affiliation, const char * const error) {}
|
||||||
const char * const error) {}
|
|
||||||
void mucwin_handle_affiliation_list(const char * const roomjid, const char * const affiliation, GSList *jids) {}
|
void mucwin_handle_affiliation_list(const char * const roomjid, const char * const affiliation, GSList *jids) {}
|
||||||
void mucwin_affiliation_set_error(const char * const roomjid, const char * const jid,
|
void mucwin_affiliation_set_error(const char * const roomjid, const char * const jid,
|
||||||
const char * const affiliation, const char * const error) {}
|
const char * const affiliation, const char * const error) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user