From 719eedb8b5b57884e750d250177ebddb7e8af932 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sun, 16 Mar 2025 13:52:45 -0700 Subject: [PATCH] Fix #739 --- comictaggerlib/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comictaggerlib/cli.py b/comictaggerlib/cli.py index a9ed446..f5266fe 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 and results 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}", ) @@ -646,7 +646,7 @@ class CLI: url_image_hash=-1, issue_title=ct_md.title or "", issue_id=ct_md.issue_id or "", - series_id=ct_md.issue_id or "", + series_id=ct_md.series_id or "", month=ct_md.month, year=ct_md.year, publisher=None,