aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2017-09-12 13:31:17 +0200
committerRoger Braun <roger@rogerbraun.net>2017-09-12 13:31:17 +0200
commit1bc58230ee16e6a6a809de85c31eb6f0841b16b3 (patch)
treea744633a80f93640d504e0adeb06deba6f735eae /lib
parent7331733d30ff69d657df9a06d923353ffaff5228 (diff)
downloadpleroma-1bc58230ee16e6a6a809de85c31eb6f0841b16b3.tar.gz
Remove milliseconds from mastodon api response.
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/mastodon_api/views/status_view.ex5
1 files changed, 4 insertions, 1 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 @@ 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,