aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/common_api/common_api.ex
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2019-01-17 15:48:14 +0000
committerMark Felder <feld@FreeBSD.org>2019-01-17 15:48:14 +0000
commit8c368d42a20ea21d5d382838843ca1c57a86e882 (patch)
tree4fcab7eb4d47f0c49516768b3d1e2a5d7fe84580 /lib/pleroma/web/common_api/common_api.ex
parentce2efd1ee25d6e06c4bc5c0d97aad7b84c7c6874 (diff)
downloadpleroma-8c368d42a20ea21d5d382838843ca1c57a86e882.tar.gz
Make attachment links configurable
Thanks @href!
Diffstat (limited to 'lib/pleroma/web/common_api/common_api.ex')
-rw-r--r--lib/pleroma/web/common_api/common_api.ex2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/common_api/common_api.ex b/lib/pleroma/web/common_api/common_api.ex
index 2902905fd..7d2ac3b0f 100644
--- a/lib/pleroma/web/common_api/common_api.ex
+++ b/lib/pleroma/web/common_api/common_api.ex
@@ -103,7 +103,7 @@ defmodule Pleroma.Web.CommonAPI do
attachments,
tags,
get_content_type(data["content_type"]),
- Enum.member?([true, "true"], data["no_attachment_links"])
+ Enum.member?([true, "true"], Map.get(data, "no_attachment_links", Pleroma.Config.get([:instance, :no_attachment_links], true)))
),
context <- make_context(inReplyTo),
cw <- data["spoiler_text"],