Skip to content

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 4, 2024
1 parent 6a9eb81 commit 0b88fcf
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -2312,7 +2312,9 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[
db_entry["qualityProfileId"]
],
)
elif (
not searched
Expand All @@ -2327,7 +2329,9 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[
db_entry["qualityProfileId"]
],
)
except KeyError:
self.logger.warning(
Expand Down Expand Up @@ -2523,7 +2527,9 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[
db_entry["qualityProfileId"]
],
)
elif (
not searched
Expand All @@ -2536,7 +2542,9 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[
db_entry["qualityProfileId"]
],
)
except KeyError:
self.logger.warning(
Expand Down Expand Up @@ -2682,7 +2690,7 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[db_entry["qualityProfileId"]],
)
elif (
not searched
Expand All @@ -2695,7 +2703,7 @@ def db_update_single_series(
self.logger.debug(
"Updating quality profile for %s to %s",
db_entry["title"],
self.temp_quality_profile,
self.temp_quality_profile_ids[db_entry["qualityProfileId"]],
)
except KeyError:
self.logger.warning(
Expand Down

0 comments on commit 0b88fcf

Please sign in to comment.