about summary refs log tree commit diff
path: root/app/models/status.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/status.rb')
-rw-r--r--app/models/status.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 19285057b..067bdb72a 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -31,6 +31,7 @@
 #  boostable              :boolean
 #  reject_replies         :boolean
 #  tsv                    :tsvector
+#  hidden                 :boolean
 #
 
 class Status < ApplicationRecord
@@ -250,7 +251,7 @@ class Status < ApplicationRecord
   end
 
   def hidden?
-    !distributable?
+    hidden || !distributable?
   end
 
   def distributable?