mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
Fix GC
This commit is contained in:
parent
af6f7c1a5a
commit
6e7150699a
1 changed files with 3 additions and 1 deletions
|
@ -163,9 +163,11 @@ def perform() -> None: # noqa: C901
|
|||
continue
|
||||
|
||||
obj = ap.parse_activity(data["activity"])
|
||||
# This activity is a direct reply of one the server actor activity, keep it
|
||||
in_reply_to = obj.get_in_reply_to()
|
||||
|
||||
# This activity is part of a thread we want to keep, keep it
|
||||
if obj and in_reply_to and meta.get("thread_root_parent"):
|
||||
if in_reply_to and meta.get("thread_root_parent"):
|
||||
thread_root_parent = meta["thread_root_parent"]
|
||||
if thread_root_parent.startswith(ID) or thread_root_parent in toi:
|
||||
_keep(data)
|
||||
|
|
Loading…
Reference in a new issue