Treat only true and "true" as true

This commit is contained in:
Maxim Filippov 2018-12-27 13:21:04 +03:00
parent 838c024231
commit be70272ab0
2 changed files with 2 additions and 2 deletions

View File

@ -102,7 +102,7 @@ defmodule Pleroma.Web.CommonAPI do
attachments,
tags,
get_content_type(data["content_type"]),
data["no_attachment_links"]
Enum.member?([true, "true"], data["no_attachment_links"])
),
context <- make_context(inReplyTo),
cw <- data["spoiler_text"],

View File

@ -89,7 +89,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do
) do
status
|> format_input(mentions, tags, content_type)
|> maybe_add_attachments(attachments, !!no_attachment_links)
|> maybe_add_attachments(attachments, no_attachment_links)
end
def make_context(%Activity{data: %{"context" => context}}), do: context