From: Mark Felder Date: Thu, 17 Jan 2019 16:01:25 +0000 (+0000) Subject: Default to disabled in the code in case the setting is absent from config.exs X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=6bc9a641ba77146815f3bf6dddab751c1cce1637;p=akkoma Default to disabled in the code in case the setting is absent from config.exs --- diff --git a/lib/pleroma/web/common_api/common_api.ex b/lib/pleroma/web/common_api/common_api.ex index 7d2ac3b0f..782e7da8f 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"], Map.get(data, "no_attachment_links", Pleroma.Config.get([:instance, :no_attachment_links], true))) + Enum.member?([true, "true"], Map.get(data, "no_attachment_links", Pleroma.Config.get([:instance, :no_attachment_links], false))) ), context <- make_context(inReplyTo), cw <- data["spoiler_text"],