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

roster_get_contacts_nooffline only gets contacts that are not offline

This commit is contained in:
Will Song 2014-11-23 02:00:56 -06:00
parent a980fbe0bd
commit e113fd2b1d

View File

@ -317,7 +317,8 @@ roster_get_contacts_nooffline(void)
g_hash_table_iter_init(&iter, contacts);
while (g_hash_table_iter_next(&iter, &key, &value)) {
result = g_slist_insert_sorted(result, value, (GCompareFunc)_compare_contacts);
if(strcmp(p_contact_presence(value), "offline"))
result = g_slist_insert_sorted(result, value, (GCompareFunc)_compare_contacts);
}
// resturn all contact structs