non condition dir creation

This commit is contained in:
Alexander Strizhakov 2020-12-27 21:58:15 +03:00
parent 546da68a11
commit 2e859794ee
No known key found for this signature in database
GPG Key ID: 022896A53AEF1381
1 changed files with 1 additions and 11 deletions

View File

@ -65,9 +65,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.StealEmojiPolicy do
Path.join(Config.get([:instance, :static_dir]), "emoji/stolen")
)
if not Config.get([:mrf_steal_emoji, :dir_exists?], false) do
create_dir(emoji_dir_path)
end
File.mkdir_p(emoji_dir_path)
new_emojis =
foreign_emojis
@ -98,12 +96,4 @@ defmodule Pleroma.Web.ActivityPub.MRF.StealEmojiPolicy do
def describe do
{:ok, %{}}
end
defp create_dir(path) do
if not File.exists?(path) do
File.mkdir_p!(path)
end
Config.put([:mrf_steal_emoji, :dir_exists?], true)
end
end