forked from AkkomaGang/akkoma
Represent object publishing date in notes.
This commit is contained in:
parent
24a3cd5d76
commit
cdcb201bf5
2 changed files with 6 additions and 6 deletions
|
@ -28,8 +28,8 @@ def to_simple_form(activity, user, with_author \\ false)
|
|||
def to_simple_form(%{data: %{"object" => %{"type" => "Note"}}} = activity, user, with_author) do
|
||||
h = fn(str) -> [to_charlist(str)] end
|
||||
|
||||
updated_at = activity.data["published"]
|
||||
inserted_at = activity.data["published"]
|
||||
updated_at = activity.data["object"]["published"]
|
||||
inserted_at = activity.data["object"]["published"]
|
||||
|
||||
attachments = Enum.map(activity.data["object"]["attachment"] || [], fn(attachment) ->
|
||||
url = hd(attachment["url"])
|
||||
|
|
|
@ -18,8 +18,8 @@ test "a note activity" do
|
|||
<id>#{note_activity.data["object"]["id"]}</id>
|
||||
<title>New note by #{user.nickname}</title>
|
||||
<content type="html">#{note_activity.data["object"]["content"]}</content>
|
||||
<published>#{note_activity.data["published"]}</published>
|
||||
<updated>#{note_activity.data["published"]}</updated>
|
||||
<published>#{note_activity.data["object"]["published"]}</published>
|
||||
<updated>#{note_activity.data["object"]["published"]}</updated>
|
||||
<ostatus:conversation>#{note_activity.data["context"]}</ostatus:conversation>
|
||||
<link ref="#{note_activity.data["context"]}" rel="ostatus:conversation" />
|
||||
<link type="application/atom+xml" href="#{note_activity.data["object"]["id"]}" rel="self" />
|
||||
|
@ -51,8 +51,8 @@ test "a reply note" do
|
|||
<id>#{answer.data["object"]["id"]}</id>
|
||||
<title>New note by #{user.nickname}</title>
|
||||
<content type="html">#{answer.data["object"]["content"]}</content>
|
||||
<published>#{answer.data["published"]}</published>
|
||||
<updated>#{answer.data["published"]}</updated>
|
||||
<published>#{answer.data["object"]["published"]}</published>
|
||||
<updated>#{answer.data["object"]["published"]}</updated>
|
||||
<ostatus:conversation>#{answer.data["context"]}</ostatus:conversation>
|
||||
<link ref="#{answer.data["context"]}" rel="ostatus:conversation" />
|
||||
<link type="application/atom+xml" href="#{answer.data["object"]["id"]}" rel="self" />
|
||||
|
|
Loading…
Reference in a new issue