Update StatusEntityLexer, prevent boosts and replies from being added to PublicTimelineService

pull/3067/head
Daniel Supernault 4 years ago
parent 5e1e207329
commit 327073724f
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -162,7 +162,12 @@ class StatusEntityLexer implements ShouldQueue
Bouncer::get($status);
}
if($status->uri == null && $status->scope == 'public' && in_array($status->type, $types)) {
if( $status->uri == null &&
$status->scope == 'public' &&
in_array($status->type, $types) &&
$status->in_reply_to_id === null &&
$status->reblog_of_id === null
) {
PublicTimelineService::add($status->id);
}

Loading…
Cancel
Save