Remove AutoLinker `scheme` option from the config

This commit is contained in:
Egor Kislitsyn 2020-02-05 21:13:56 +04:00
parent c27d1d65bf
commit 3909b5b7b3
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
3 changed files with 2 additions and 7 deletions

View File

@ -508,7 +508,6 @@ config :pleroma, :fetch_initial_posts,
config :auto_linker,
opts: [
scheme: true,
extra: true,
# TODO: Set to :no_scheme when it works properly
validate_tld: true,

View File

@ -2171,11 +2171,6 @@ config :pleroma, :config_description, [
type: :boolean,
description: "Set to `false` to remove target='_blank' attribute"
},
%{
key: :scheme,
type: :boolean,
description: "Set to `true` to link urls with schema http://google.com"
},
%{
key: :truncate,
type: [:integer, false],

View File

@ -13,7 +13,8 @@ defmodule Pleroma.Formatter do
@auto_linker_config hashtag: true,
hashtag_handler: &Pleroma.Formatter.hashtag_handler/4,
mention: true,
mention_handler: &Pleroma.Formatter.mention_handler/4
mention_handler: &Pleroma.Formatter.mention_handler/4,
scheme: true
def escape_mention_handler("@" <> nickname = mention, buffer, _, _) do
case User.get_cached_by_nickname(nickname) do