From fe263d0d00fc894f8c5bc527fb46459ac9ee4cff Mon Sep 17 00:00:00 2001 From: Angelina Filippova Date: Sat, 10 Jul 2021 15:28:09 +0300 Subject: [PATCH] Make Pleroma.Upload.Filter.Mogrify suggestions strings --- config/description.exs | 4 ++-- 1 file 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'}" ] } ]