Fix deprecation warning for welcome message
authorMark Felder <feld@FreeBSD.org>
Mon, 21 Sep 2020 22:08:49 +0000 (17:08 -0500)
committerMark Felder <feld@FreeBSD.org>
Mon, 21 Sep 2020 22:08:49 +0000 (17:08 -0500)
lib/pleroma/config/deprecation_warnings.ex

index 98c4dc9c8e1dad2abc8891ebe8d6074553f9a9d4..51ddb2889e27c2f7dee098df5fb87932cf4d219b 100644 (file)
@@ -83,9 +83,9 @@ defmodule Pleroma.Config.DeprecationWarnings do
     if use_old_config do
       Logger.error("""
       !!!DEPRECATION WARNING!!!
-      Your config is using the old namespace for Welcome messages configuration. You need to change to the new namespace:
-      \n* `config :pleroma, :instance, welcome_user_nickname` is now `config :pleroma, :welcome, :direct_message, :sender_nickname`
-      \n* `config :pleroma, :instance, welcome_message` is now `config :pleroma, :welcome, :direct_message, :message`
+      Your config is using the old namespace for Welcome messages configuration. You need to convert to the new namespace. e.g.,
+      \n* `config :pleroma, :instance, welcome_user_nickname` and `config :pleroma, :instance, welcome_message` are now equal to:
+      \n* `config :pleroma, :welcome, direct_message: [enabled: true, sender_nickname: "NICKNAME", message: "Your welcome message"]`"
       """)
 
       :error