Skip to content

Commit

Permalink
[patch] Hotfix bad variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Feramance committed Dec 4, 2024
1 parent 6426d19 commit e880563
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qBitrr/arss.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,13 @@ def __init__(
self.main_quality_profiles = CONFIG.get(
f"{self._name}.EntrySearch.MainQualityProfile", fallback=None
)
if isinstance(self.main_quality_profile, str):
self.main_quality_profile = [self.main_quality_profile]
if isinstance(self.main_quality_profiles, str):
self.main_quality_profiles = [self.main_quality_profiles]
self.temp_quality_profiles = CONFIG.get(
f"{self._name}.EntrySearch.TempQualityProfile", fallback=None
)
if isinstance(self.temp_quality_profile, str):
self.temp_quality_profile = [self.temp_quality_profile]
if isinstance(self.temp_quality_profiles, str):
self.temp_quality_profiles = [self.temp_quality_profiles]
if self.use_temp_for_missing:
self.temp_quality_profile_ids = self.parse_quality_profiles()

Expand Down

0 comments on commit e880563

Please sign in to comment.