Fix reply delete from inbox

This commit is contained in:
Thomas Sileo 2019-08-18 19:05:46 +02:00
parent d3f2d61daf
commit 4f0812988b

View file

@ -52,7 +52,13 @@ def _delete_process_inbox(delete: ap.Delete, new_meta: _NewMeta) -> None:
) )
) )
if in_reply_to: if in_reply_to:
DB.activities.update_one(post_query, inc(MetaKey.COUNT_REPLY, -1)) DB.activities.update_one(
{**by_object_id(in_reply_to), **by_type(ap.ActivityType.CREATE)},
inc(MetaKey.COUNT_REPLY, -1),
)
DB.replies.update_one(
by_remote_id(in_reply_to), inc(MetaKey.COUNT_REPLY, -1)
)
except Exception: except Exception:
_logger.exception(f"failed to handle delete replies for {obj_id}") _logger.exception(f"failed to handle delete replies for {obj_id}")