Skip to content

Commit

Permalink
Should be True, not None
Browse files Browse the repository at this point in the history
  • Loading branch information
greeeen-dev committed Feb 13, 2025
1 parent 008dc41 commit 6c24211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,7 @@ async def delete_copies(self, message):

roomdata = self.get_room(msg.room)

if not roomdata['meta']['settings'].get('relay_delete'):
if not roomdata['meta']['settings'].get('relay_delete', True):
return 0

threads = []
Expand Down

0 comments on commit 6c24211

Please sign in to comment.