1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-09-22 19:45:54 -04:00

Handle listing ignored bookmarks when none are ignored

This commit is contained in:
Michael Vetter 2020-05-25 13:38:47 +02:00
parent de8975c008
commit 1cfab017a4

View File

@ -2687,6 +2687,12 @@ _show_roster_contacts(GSList *list, gboolean show_groups)
void
cons_show_bookmarks_ignore(gchar **list, gsize len)
{
if (len == 0) {
cons_show("");
cons_show("No ignored bookmarks");
return;
}
int i;
ProfWin *console = wins_get_console();