From e42f09c53d4bd1df5512fc72c681133f68086cd6 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sat, 6 Apr 2019 11:58:24 -0500 Subject: curated world: ignore non-self replies --- app/models/status.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'app/models/status.rb') diff --git a/app/models/status.rb b/app/models/status.rb index 1dfe8715b..ae0ac4262 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -380,6 +380,7 @@ class Status < ApplicationRecord # but it does the job query = Status.where(id: boost_query) .or(where(id: fav_query)) + .without_replies .with_public_visibility end end -- cgit