diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 23:05:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 23:05:08 -0400 |
commit | 63686fd36f9dead2bc0d4b3cb53d841a9b320da2 (patch) | |
tree | cf24925ee083396659048373096e8907de458341 /app/lib/atom_serializer.rb | |
parent | 4c751d25e5f0a2a211115b069651f0747c162d7a (diff) | |
parent | a25a384af3d08a05bc0907261f76410da36cbb10 (diff) |
Merge branch 'master' into patch-2
Diffstat (limited to 'app/lib/atom_serializer.rb')
-rw-r--r-- | app/lib/atom_serializer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/atom_serializer.rb b/app/lib/atom_serializer.rb index be1cced8b..b9dcee6b3 100644 --- a/app/lib/atom_serializer.rb +++ b/app/lib/atom_serializer.rb @@ -328,7 +328,7 @@ class AtomSerializer def serialize_status_attributes(entry, status) append_element(entry, 'summary', status.spoiler_text) unless status.spoiler_text.blank? - append_element(entry, 'content', Formatter.instance.format(status.reblog? ? status.reblog : status).to_str, type: 'html') + append_element(entry, 'content', Formatter.instance.format(status.proper).to_str, type: 'html') status.mentions.each do |mentioned| append_element(entry, 'link', nil, rel: :mentioned, 'ostatus:object-type': TagManager::TYPES[:person], href: TagManager.instance.uri_for(mentioned.account)) |