Skip to content

Commit

Permalink
fix: disabling radar also disables readarr #74
Browse files Browse the repository at this point in the history
ver: 3.2.1
  • Loading branch information
toddrob99 committed Feb 3, 2023
1 parent fb4c0fe commit 129b952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions searcharr.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import readarr
import settings

__version__ = "3.2"
__version__ = "3.2.1"

DBPATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data")
DBFILE = "searcharr.db"
Expand Down Expand Up @@ -469,7 +469,7 @@ def cmd_book(self, update, context):
)
)
return
if not settings.radarr_enabled:
if not settings.readarr_enabled:
update.message.reply_text(self._xlate("readarr_disabled"))
return
title = self._strip_entities(update.message)
Expand Down

0 comments on commit 129b952

Please sign in to comment.