Fix #529 - Make hashtag timelines show conversations, fix hashtag loading in the UI
This commit is contained in:
@ -8,9 +8,12 @@ class FanOutOnWriteService < BaseService
|
||||
deliver_to_followers(status)
|
||||
deliver_to_mentioned(status)
|
||||
|
||||
return if status.account.silenced? || !status.public_visibility? || status.reblog? || (status.reply? && status.in_reply_to_account_id != status.account_id)
|
||||
return if status.account.silenced? || !status.public_visibility? || status.reblog?
|
||||
|
||||
deliver_to_hashtags(status)
|
||||
|
||||
return if status.reply? && status.in_reply_to_account_id != status.account_id
|
||||
|
||||
deliver_to_public(status)
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user