1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Removed subscribed check when displaying roster panel

This commit is contained in:
James Booth 2015-07-02 00:01:37 +01:00
parent 10eb0bbbf8
commit fb8b223876

View File

@ -45,7 +45,6 @@
static void static void
_rosterwin_contact(ProfLayoutSplit *layout, PContact contact) _rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
{ {
if (p_contact_subscribed(contact)) {
const char *name = p_contact_name_or_jid(contact); const char *name = p_contact_name_or_jid(contact);
const char *presence = p_contact_presence(contact); const char *presence = p_contact_presence(contact);
@ -81,7 +80,6 @@ _rosterwin_contact(ProfLayoutSplit *layout, PContact contact)
} }
} }
} }
}
static void static void
_rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char * const presence, char *title) _rosterwin_contacts_by_presence(ProfLayoutSplit *layout, const char * const presence, char *title)