Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

Commit

Permalink
Fix wrong key access in queue sync
Browse files Browse the repository at this point in the history
  • Loading branch information
TimJentzsch committed Jun 30, 2023
1 parent b94ed12 commit 2b8d36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tor_archivist/core/queue_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _auto_report_handling(cfg: Config, r_submission: Any, b_submission: Dict, re

# Check if the post has been removed by a mod
if r_submission.removed_by_category:
if not b_submission["removed_from_reddit"]:
if not b_submission["removed_from_queue"]:
remove_on_blossom(cfg, b_submission)
# We can ignore the report
return True
Expand Down

0 comments on commit 2b8d36c

Please sign in to comment.