Skip to content
Snippets Groups Projects
Commit 1bc58230 authored by lain's avatar lain
Browse files

Remove milliseconds from mastodon api response.

parent 7331733d
Branches
No related tags found
No related merge requests found
......@@ -26,6 +26,9 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
attachments = render_many(object["attachment"] || [], StatusView, "attachment.json", as: :attachment)
created_at = (object["published"] || "")
|> String.replace(~r/\.\d+/, "")
%{
id: activity.id,
uri: object["id"],
......@@ -35,7 +38,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
in_reply_to_account_id: nil,
reblog: nil,
content: HtmlSanitizeEx.basic_html(object["content"]),
created_at: object["published"],
created_at: created_at,
reblogs_count: announcement_count,
favourites_count: like_count,
reblogged: !!repeated,
......
......@@ -12,6 +12,9 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
status = StatusView.render("status.json", %{activity: note})
created_at = (note.data["object"]["published"] || "")
|> String.replace(~r/\.\d+/, "")
expected = %{
id: note.id,
uri: note.data["object"]["id"],
......@@ -21,7 +24,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
in_reply_to_account_id: nil,
reblog: nil,
content: HtmlSanitizeEx.basic_html(note.data["object"]["content"]),
created_at: note.data["object"]["published"],
created_at: created_at,
reblogs_count: 0,
favourites_count: 0,
reblogged: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment