Browse Source

Fix JSON serialization of media_attachment (#4111)

pull/4/head
unarist 6 years ago
committed by Eugen Rochko
parent
commit
102466ac58
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/serializers/rest/media_attachment_serializer.rb

+ 1
- 1
app/serializers/rest/media_attachment_serializer.rb View File

@ -15,7 +15,7 @@ class REST::MediaAttachmentSerializer < ActiveModel::Serializer
end
def text_url
medium_url(object.id)
object.local? ? medium_url(object) : nil
end
def meta

Loading…
Cancel
Save