Skip to content
Snippets Groups Projects
Commit 0320ea4b authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Fix public timeline query

parent 36921be9
No related branches found
No related tags found
No related merge requests found
......@@ -126,8 +126,8 @@ class Status < ApplicationRecord
query
.joins('LEFT OUTER JOIN statuses AS parents ON statuses.in_reply_to_id = parents.id')
.joins('LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id')
.where('parents.account_id NOT IN (?)', blocked)
.where('statuses.account_id NOT IN (?)', blocked)
.where('(parents.id IS NULL OR parents.account_id NOT IN (?))', blocked)
.where('(reblogs.id IS NULL OR reblogs.account_id NOT IN (?))', blocked)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment