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

Show fulljid when contact becomes unavailable

This commit is contained in:
James Booth 2013-02-17 02:23:36 +00:00
parent bced3d4b36
commit 50b7edbfb5

View File

@ -340,13 +340,15 @@ prof_handle_contact_offline(char *contact, char *resource, char *status)
gboolean updated = contact_list_contact_offline(contact, resource, status);
if (resource != NULL && updated) {
Jid *jid = jid_create_from_bare_and_resource(contact, resource);
PContact result = contact_list_get_contact(contact);
if (p_contact_subscription(result) != NULL) {
if (strcmp(p_contact_subscription(result), "none") != 0) {
ui_contact_offline(contact, "offline", status);
ui_contact_offline(jid->fulljid, "offline", status);
win_current_page_off();
}
}
jid_destroy(jid);
}
}