Handle case when setting value is nil

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-10-08 08:19:59 +02:00
parent ebaa9154ee
commit fbb1b2d607

View File

@@ -94,6 +94,8 @@ defmodule Mobilizon.Admin do
end
end
def get_setting_value(nil), do: nil
def get_setting_value(value) do
case Jason.decode(value) do
{:ok, val} ->