diff options
author | Angelina Filippova <linakirsanova@gmail.com> | 2021-07-10 15:28:09 +0300 |
---|---|---|
committer | Angelina Filippova <linakirsanova@gmail.com> | 2021-07-10 15:28:09 +0300 |
commit | fe263d0d00fc894f8c5bc527fb46459ac9ee4cff (patch) | |
tree | 02efc8f9f3a3daa243ab675b4dc024c9417ea898 | |
parent | 07ffce03429ff25d681fd24d5732d19a1ccee316 (diff) | |
download | pleroma-fe263d0d00fc894f8c5bc527fb46459ac9ee4cff.tar.gz |
Make Pleroma.Upload.Filter.Mogrify suggestions strings
-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 0ac447cc8..533035958 100644 --- a/config/description.exs +++ b/config/description.exs @@ -211,11 +211,11 @@ config :pleroma, :config_description, [ type: :multiple_select, description: "List of actions for the mogrify command. It's possible to add self-written settings as string. " <> - "For example `auto-orient, strip, {\"resize\", \"3840x1080>\"}` value will be parsed into valid list of the settings.", + "For example `auto-orient, strip, \"{'resize', '3840x1080>'}\"` value will be parsed into valid list of the settings.", suggestions: [ "strip", "auto-orient", - {"implode", "1"} + "{'implode', '1'}" ] } ] |