From 74006af796461dc5b4ee7636074582ac01207a16 Mon Sep 17 00:00:00 2001 From: Thomas Eppers Date: Wed, 27 Oct 2021 14:10:07 +0200 Subject: [PATCH] added a check to not show an error when load next page of tags --- src/ui/default.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/default.rs b/src/ui/default.rs index dfb3241..9414b78 100644 --- a/src/ui/default.rs +++ b/src/ui/default.rs @@ -122,6 +122,7 @@ impl Ui { State::SelectTag => { let mut repo = ui.repo.get(); let tag = match ui.tags.get_selected() { + Err(tag_list::Error::NextPageSelected) => continue, Err(e) => { ui.info.set_info(&format!("{}", e)); continue;