From 1bc58230ee16e6a6a809de85c31eb6f0841b16b3 Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Tue, 12 Sep 2017 13:31:17 +0200 Subject: [PATCH] Remove milliseconds from mastodon api response. --- lib/pleroma/web/mastodon_api/views/status_view.ex | 5 ++++- test/web/mastodon_api/status_view_test.exs | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex index 895ab3d50..cc5c0e9b6 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -26,6 +26,9 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity} 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 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity} 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, diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 2eb27009b..3c2de4cbe 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -12,6 +12,9 @@ test "a note activity" 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 @@ test "a note activity" 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,