From 7480e28eac3ed81f2854dfb14b2dfba86a31e68d Mon Sep 17 00:00:00 2001 From: kcgthb Date: Mon, 27 Jan 2025 17:48:19 -0800 Subject: [PATCH] only display metadata source info if results were found, to avoid confusion --- comictaggerlib/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comictaggerlib/cli.py b/comictaggerlib/cli.py index 7344415..64896b5 100644 --- a/comictaggerlib/cli.py +++ b/comictaggerlib/cli.py @@ -121,7 +121,7 @@ class CLI: self.post_process_matches(match_results) - if self.config.Auto_Tag__online: + if self.config.Auto_Tag__online and results[-1].online_results != []: self.output( f"\nFiles tagged with metadata provided by {self.current_talker().name} {self.current_talker().website}", )