Skip to content

Commit

Permalink
Fix for #562
Browse files Browse the repository at this point in the history
  • Loading branch information
meisnate12 committed Jan 4, 2022
1 parent 3f8261d commit 5f02b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def cant_interact(attr1, attr2, fail=False):
raise Failed(f"{self.Type} Error: " + ('Playlists' if playlist else 'collection_order: custom') +
(f" can only be used with a single builder per {self.type}" if len(self.builders) > 1 else f" cannot be used with {self.builders[0][0]}"))

if not self.smart_url and len(self.builders) == 0:
if not self.server_preroll and not self.smart_url and len(self.builders) == 0:
raise Failed(f"{self.Type} Error: No builders were found")

if "add_missing" not in self.radarr_details:
Expand Down

0 comments on commit 5f02b7d

Please sign in to comment.