about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authorbeatrix <beatrix.bitrot@gmail.com>2017-11-17 15:17:49 -0500
committerGitHub <noreply@github.com>2017-11-17 15:17:49 -0500
commitb006bb82afb360d64e9d2f7f12aa76d4a69a2397 (patch)
tree6c8a597003cf17e1e2d8ea713d0478f54b9edeaa /app
parent45f18b8f494153fd63871d60782da992e847ec16 (diff)
parentf6355f6ffb124ffe3a9e7339543a4f7ac7c0905a (diff)
Merge pull request #221 from glitch-soc/local-only-policy
Update StatusPolicy to check current_account for local_only? toots.
Diffstat (limited to 'app')
-rw-r--r--app/policies/status_policy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/policies/status_policy.rb b/app/policies/status_policy.rb
index 8e0c1eef1..369ede2b0 100644
--- a/app/policies/status_policy.rb
+++ b/app/policies/status_policy.rb
@@ -6,7 +6,7 @@ class StatusPolicy < ApplicationPolicy
   end
 
   def show?
-    return false if local_only? && account.nil?
+    return false if local_only? && current_account.nil?
 
     if direct?
       owned? || record.mentions.where(account: current_account).exists?