diff options
author | Michael Vetter <jubalh@iodoru.org> | 2020-05-25 13:38:47 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2020-05-25 13:38:47 +0200 |
commit | 1cfab017a44b3059dc811eebd1d92edf794defb4 (patch) | |
tree | 67d2c02658b9a0c505815a04c3b3986b0d19859b | |
parent | de8975c008aa4016e7bc1b817a62d90f9f45cefa (diff) | |
download | profani-tty-1cfab017a44b3059dc811eebd1d92edf794defb4.tar.gz |
Handle listing ignored bookmarks when none are ignored
-rw-r--r-- | src/ui/console.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ui/console.c b/src/ui/console.c index 3129c773..c7cecf61 100644 --- a/src/ui/console.c +++ b/src/ui/console.c @@ -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(); |