Hide announce from non-followers in the stream

This commit is contained in:
Thomas Sileo 2022-07-27 12:31:32 +02:00
parent 2bbb23b7d9
commit 31a2dd6950
1 changed files with 8 additions and 1 deletions

View File

@ -1423,7 +1423,14 @@ async def save_to_inbox(
db_session.add(announced_inbox_object)
await db_session.flush()
inbox_object.relates_to_inbox_object_id = announced_inbox_object.id
inbox_object.is_hidden_from_stream = False
# Only show the announce in the stream if it comes from an actor
# in the following collection
followings = await _get_following(db_session)
is_from_following = inbox_object.actor.ap_id in {
f.ap_actor_id for f in followings
}
inbox_object.is_hidden_from_stream = not is_from_following
elif activity_ro.ap_type in ["Like", "Announce"]:
if not relates_to_outbox_object:
logger.info(