Skip to content

Commit

Permalink
Fixed issue while saving notifications settings
Browse files Browse the repository at this point in the history
  • Loading branch information
sambartik committed Aug 15, 2023
1 parent 262d7d2 commit 42ae3af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/api/system/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def post(self):
item = json.loads(item)
database.execute(
update(TableSettingsNotifier).values(
enabled=item['enabled'],
enabled=int(item['enabled'] == True),
url=item['url'])
.where(TableSettingsNotifier.name == item['name']))

Expand Down

0 comments on commit 42ae3af

Please sign in to comment.