From d141ff963473876e5fe6e70622c1af9916c06503 Mon Sep 17 00:00:00 2001 From: digitalec <31838395+digitalec@users.noreply.github.com> Date: Wed, 3 Nov 2021 21:11:51 -0400 Subject: [PATCH] Fixes #45 --- deemon/cmd/refresh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deemon/cmd/refresh.py b/deemon/cmd/refresh.py index e67583e..9a6f11a 100644 --- a/deemon/cmd/refresh.py +++ b/deemon/cmd/refresh.py @@ -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