diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-06-23 14:17:23 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-06-30 16:39:15 -0500 |
commit | 8daacc911498d827fd68ea3d34eb1be9ae4a1ffe (patch) | |
tree | adc686b5ba9c5832e1cc7f825e1dd01f7dd3d3a0 /config/config.exs | |
parent | 1d0804b49f56fe722b12f83269d98acfdee7ac77 (diff) | |
download | pleroma-8daacc911498d827fd68ea3d34eb1be9ae4a1ffe.tar.gz |
AutoLinker --> Linkify, update to latest version
https://git.pleroma.social/pleroma/elixir-libraries/linkify
Diffstat (limited to 'config/config.exs')
-rw-r--r-- | config/config.exs | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/config/config.exs b/config/config.exs index 5aad26e95..a74a6a5ba 100644 --- a/config/config.exs +++ b/config/config.exs @@ -520,16 +520,14 @@ config :pleroma, :workers, federator_outgoing: 5 ] -config :auto_linker, - opts: [ - extra: true, - # TODO: Set to :no_scheme when it works properly - validate_tld: true, - class: false, - strip_prefix: false, - new_window: false, - rel: "ugc" - ] +config :pleroma, Pleroma.Formatter, + class: false, + rel: "ugc", + new_window: false, + truncate: false, + strip_prefix: false, + extra: true, + validate_tld: :no_scheme config :pleroma, :ldap, enabled: System.get_env("LDAP_ENABLED") == "true", |