From a8701282d422b8108b4998de4a9bea6cebf199ea Mon Sep 17 00:00:00 2001 From: Roger Braun Date: Thu, 14 Sep 2017 09:14:08 +0200 Subject: [PATCH] MastoAPI: fake out 'application' property. --- 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 7c8af994b..e561b32fe 100644 --- a/lib/pleroma/web/mastodon_api/views/status_view.ex +++ b/lib/pleroma/web/mastodon_api/views/status_view.ex @@ -52,7 +52,10 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity} media_attachments: attachments, mentions: mentions, tags: [], # fix, - application: nil, + application: %{ + name: "Web", + website: nil + }, language: nil } end diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs index 3941e3019..870a205f1 100644 --- a/test/web/mastodon_api/status_view_test.exs +++ b/test/web/mastodon_api/status_view_test.exs @@ -36,7 +36,10 @@ test "a note activity" do media_attachments: [], mentions: [], tags: [], - application: nil, + application: %{ + name: "Web", + website: nil + }, language: nil }