Add media upload endpoint.
[akkoma] / lib / pleroma / web / mastodon_api / views / status_view.ex
index 895ab3d507fbccdee61255454c895dab40df3442..a172875df320f9087208ba9ac15004c273bde98b 100644 (file)
@@ -26,6 +26,11 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
 
     attachments = render_many(object["attachment"] || [], StatusView, "attachment.json", as: :attachment)
 
+    created_at = (object["published"] || "")
+    |> NaiveDateTime.from_iso8601!
+    |> NaiveDateTime.to_iso8601
+    |> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
+
     %{
       id: activity.id,
       uri: object["id"],
@@ -35,7 +40,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,