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

Fix /disco info contact address header

Only display server contact information heading when we have actual
addresses.
This commit is contained in:
Michael Vetter 2021-06-30 13:58:28 +02:00
parent a46c4443e3
commit dc79c514be

View File

@ -851,11 +851,13 @@ static void _cons_print_contact_information_hashlist_item(gpointer key, gpointer
void
cons_show_disco_contact_information(GHashTable* addresses)
{
if (addresses && g_hash_table_size(addresses) > 0) {
cons_show("");
cons_show("Server contact information:");
g_hash_table_foreach(addresses, _cons_print_contact_information_hashlist_item, NULL);
}
}
void
cons_show_status(const char* const barejid)