From bf60f2898d8c9dcf880bd14c187caf90b9549a2a Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 31 Jan 2017 22:34:33 +0100 Subject: Fix #529 - Make hashtag timelines show conversations, fix hashtag loading in the UI --- app/models/status.rb | 1 - 1 file changed, 1 deletion(-) (limited to 'app/models/status.rb') diff --git a/app/models/status.rb b/app/models/status.rb index 651d0dbc9..99e167bc9 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -119,7 +119,6 @@ class Status < ApplicationRecord query = tag.statuses .joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id') .where(visibility: :public) - .where('(statuses.in_reply_to_id IS NULL OR statuses.in_reply_to_account_id = statuses.account_id)') .where('statuses.reblog_of_id IS NULL') account.nil? ? filter_timeline_default(query) : filter_timeline_default(filter_timeline(query, account)) -- cgit