diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-06 11:58:24 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:21 -0500 |
commit | e42f09c53d4bd1df5512fc72c681133f68086cd6 (patch) | |
tree | e2b4874018610b57460d34d7a502c56f2db113d3 | |
parent | 7580036307581a96790816683734433738ddd2b4 (diff) |
curated world: ignore non-self replies
-rw-r--r-- | app/models/status.rb | 1 |
1 files changed, 1 insertions, 0 deletions
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 |