fix for new instances

This commit is contained in:
Alexander Strizhakov 2019-06-16 10:01:15 +00:00 committed by lain
parent 135c196769
commit 7a4228be5a
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@ defmodule Pleroma.Config.TransferTask do
end
def load_and_update_env do
if Pleroma.Config.get([:instance, :dynamic_configuration]) do
if Pleroma.Config.get([:instance, :dynamic_configuration]) and
Ecto.Adapters.SQL.table_exists?(Pleroma.Repo, "config") do
Pleroma.Repo.all(Config)
|> Enum.each(&update_env(&1))
end