about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/models/status.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 93594ec8f..e440bbaca 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -158,8 +158,7 @@ class Status < ApplicationRecord
       elsif !account.nil? && target_account.blocking?(account)
         where('1 = 0')
       elsif !account.nil?
-        joins('LEFT OUTER JOIN mentions ON statuses.id = mentions.status_id')
-          .where('mentions.account_id = ?', account.id)
+        joins('LEFT OUTER JOIN mentions ON statuses.id = mentions.status_id AND mentions.account_id = ' + account.id.to_s)
           .where('statuses.visibility != ? OR mentions.id IS NOT NULL', Status.visibilities[:private])
       else
         where.not(visibility: :private)