Update comictaggerlib/cli.py

Make sure `results` exists before checking for `online_results`

Co-authored-by: Timmy Welch <timmy@narnian.us>
This commit is contained in:
Kilian Cavalotti 2025-02-02 11:38:51 -08:00 committed by GitHub
parent 7480e28eac
commit fbaec93d7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -121,7 +121,7 @@ class CLI:
self.post_process_matches(match_results)
if self.config.Auto_Tag__online and results[-1].online_results != []:
if self.config.Auto_Tag__online and results and results[-1].online_results != []:
self.output(
f"\nFiles tagged with metadata provided by {self.current_talker().name} {self.current_talker().website}",
)