MastoAPI: Include CW.

This commit is contained in:
Roger Braun 2017-10-31 17:49:47 +01:00
parent 04217f52c9
commit 44295dd49a
3 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
favourited: !!favorited,
muted: false,
sensitive: sensitive,
spoiler_text: "",
spoiler_text: object["summary"] || "",
visibility: "public",
media_attachments: attachments,
mentions: mentions,

View File

@ -26,6 +26,7 @@ defmodule Pleroma.Factory do
"likes" => [],
"like_count" => 0,
"context" => "2hu",
"summary" => "2hu",
"tag" => ["2hu"],
"emoji" => %{
"2hu" => "corndog.png"

View File

@ -32,7 +32,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusViewTest do
favourited: false,
muted: false,
sensitive: false,
spoiler_text: "",
spoiler_text: note.data["object"]["summary"],
visibility: "public",
media_attachments: [],
mentions: [],