From: William Pitcock Date: Sun, 23 Dec 2018 13:40:33 +0000 (+0000) Subject: mastodon api: status view: remove obsolete peertube hack X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=32dfc1d12a29004ef3d90c8405d25e49e74c80ab;p=akkoma mastodon api: status view: remove obsolete peertube hack --- diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex index 46c559e3a..d06da812c 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -106,7 +106,6 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do favorited = opts[:for] && opts[:for].ap_id in (object["likes"] || []) attachment_data = object["attachment"] || [] - attachment_data = attachment_data ++ if object["type"] == "Video", do: [object], else: [] attachments = render_many(attachment_data, StatusView, "attachment.json", as: :attachment) created_at = Utils.to_masto_date(object["published"])