about summary refs log tree commit diff
path: root/app/models/status.rb
diff options
context:
space:
mode:
authorShel R <Yiskah.Raphen@gmail.com>2017-04-07 22:23:50 -0400
committerGitHub <noreply@github.com>2017-04-07 22:23:50 -0400
commit7632178300705bead8547284729fd50d038741b9 (patch)
tree881b0aef00eb6c558aaaae8cd66e4166bff5b031 /app/models/status.rb
parentd025c5e59306bed05aad4ebc52c541c34cf43d94 (diff)
parente4e948a21b748a30035392b249b3ee705ed86a91 (diff)
Merge branch 'master' into patch-1
Diffstat (limited to 'app/models/status.rb')
-rw-r--r--app/models/status.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/models/status.rb b/app/models/status.rb
index 6948ad77c..7e3dd3e28 100644
--- a/app/models/status.rb
+++ b/app/models/status.rb
@@ -62,8 +62,12 @@ class Status < ApplicationRecord
     reply? ? :comment : :note
   end
 
+  def proper
+    reblog? ? reblog : self
+  end
+
   def content
-    reblog? ? reblog.text : text
+    proper.text
   end
 
   def target