mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2025-06-05 21:59:23 +02:00
More share dedup tweak
This commit is contained in:
@ -1659,7 +1659,10 @@ async def _handle_announce_activity(
|
||||
relates_to_inbox_object.ap_published_at # type: ignore
|
||||
)
|
||||
dup_count = 0
|
||||
if (delta_from_original) < skip_delta or (
|
||||
if (
|
||||
not relates_to_inbox_object.is_hidden_from_stream
|
||||
and delta_from_original < skip_delta
|
||||
) or (
|
||||
dup_count := (
|
||||
await db_session.scalar(
|
||||
select(func.count(models.InboxObject.id)).where(
|
||||
|
Reference in New Issue
Block a user