Fix bug with no-delete option

fix-exception-with-missing-output
Julian-Samuel Gebühr 2023-01-11 20:39:46 +01:00
parent 4ddac75d9a
commit ba9c29a3ab
1 changed files with 5 additions and 4 deletions

View File

@ -109,10 +109,11 @@ class Instance:
@staticmethod
def apply_blocks_from_diff(diffs, server, token, no_delete: bool):
for diff in diffs:
if diff["local"] is None and not no_delete:
"""Delete the block on the remote server"""
diff['remote'].delete(server, token)
logging.info(f"Deleted {diff['remote'].domain} from blocklist")
if diff["local"] is None:
if not no_delete:
"""Delete the block on the remote server"""
diff['remote'].delete(server, token)
logging.info(f"Deleted {diff['remote'].domain} from blocklist")
elif diff["remote"] is None:
"""Add the block on the remote server"""
diff["local"].apply(server, token)