Skip to content

Commit

Permalink
Fixes #45
Browse files Browse the repository at this point in the history
  • Loading branch information
digitalec committed Nov 4, 2021
1 parent 7f86f47 commit d141ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deemon/cmd/refresh.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def allowed_record_type(artist_rec_type, release_rec_type: str):
""" Compare actual record_type against allowable """

if artist_rec_type:
if artist_rec_type == release_rec_type or "all":
if artist_rec_type == release_rec_type or artist_rec_type == "all":
return True
else:
return
Expand Down

0 comments on commit d141ff9

Please sign in to comment.