Merge branch 'fix-for-new-isntances' into 'develop'

fix for new instances

See merge request pleroma/pleroma!1294
This commit is contained in:
lain 2019-06-16 10:01:15 +00:00
commit 549a410fda
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