diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-07-29 22:07:02 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-07-29 22:07:02 +0200 |
commit | fc269fd319a77c6f7dd3ac340c6306f74ec35ce8 (patch) | |
tree | 2b835c3c5db9948b737161f659f3041b8dfe8d5c /lib | |
parent | d0342df617f18250b04872769938c7778cc70dd2 (diff) | |
download | pleroma-fc269fd319a77c6f7dd3ac340c6306f74ec35ce8.tar.gz |
Add html alternate link to atom.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/ostatus/activity_representer.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/ostatus/activity_representer.ex b/lib/pleroma/web/ostatus/activity_representer.ex index eaa3c65e9..cf5c89107 100644 --- a/lib/pleroma/web/ostatus/activity_representer.ex +++ b/lib/pleroma/web/ostatus/activity_representer.ex @@ -53,7 +53,8 @@ defmodule Pleroma.Web.OStatus.ActivityRepresenter do {:updated, h.(updated_at)}, {:"ostatus:conversation", [], h.(activity.data["context"])}, {:link, [ref: h.(activity.data["context"]), rel: 'ostatus:conversation'], []}, - {:link, [type: ['application/atom+xml'], href: h.(activity.data["object"]["id"]), rel: 'self'], []} + {:link, [type: ['application/atom+xml'], href: h.(activity.data["object"]["id"]), rel: 'self'], []}, + {:link, [type: ['text/html'], href: h.(activity.data["object"]["id"]), rel: 'alternate'], []} ] ++ categories ++ attachments ++ in_reply_to ++ author ++ mentions end |