diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-02-11 15:39:19 -0600 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-02-11 15:39:19 -0600 |
commit | ff9fd4ca895563178e3174fdc86d866508c5a9fa (patch) | |
tree | 455c352b27b87654ba92b7cd6c87a544deeda290 /config/description.exs | |
parent | d056f7f722b5e734ac53d8b55a0228174d64cc9f (diff) | |
download | pleroma-ff9fd4ca895563178e3174fdc86d866508c5a9fa.tar.gz pleroma-ff9fd4ca895563178e3174fdc86d866508c5a9fa.zip |
Fix the confusingly named and inverted logic of "no_attachment_links"
The setting is now simply "attachment_links" and the boolean value does
what you expect. A double negative is never possible and describing the
functionality is no longer a philospher's worst nightmare.
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/description.exs b/config/description.exs index e5bac9b3f..6b9d09de9 100644 --- a/config/description.exs +++ b/config/description.exs @@ -796,10 +796,10 @@ config :pleroma, :config_description, [ ] }, %{ - key: :no_attachment_links, + key: :attachment_links, type: :boolean, description: - "Set to `true` to disable automatically adding attachment link text to statuses" + "Enable to automatically add attachment link text to statuses" }, %{ key: :welcome_message, |