forked from AkkomaGang/akkoma
Ensure we have the emoji base path
This commit is contained in:
parent
795524daf1
commit
9c53a3390e
1 changed files with 4 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
defmodule Pleroma.Web.ActivityPub.MRF.StealEmojiPolicyTest do
|
defmodule Pleroma.Web.ActivityPub.MRF.StealEmojiPolicyTest do
|
||||||
use Pleroma.DataCase
|
use Pleroma.DataCase, async: false
|
||||||
|
|
||||||
alias Pleroma.Config
|
alias Pleroma.Config
|
||||||
alias Pleroma.Emoji
|
alias Pleroma.Emoji
|
||||||
|
@ -60,6 +60,9 @@ defmacro mock_tesla(
|
||||||
|
|
||||||
emoji_path = [:instance, :static_dir] |> Config.get() |> Path.join("emoji/stolen")
|
emoji_path = [:instance, :static_dir] |> Config.get() |> Path.join("emoji/stolen")
|
||||||
|
|
||||||
|
emoji_base_path = [:instance, :static_dir] |> Config.get() |> Path.join("emoji/")
|
||||||
|
File.mkdir_p(emoji_base_path)
|
||||||
|
|
||||||
Emoji.reload()
|
Emoji.reload()
|
||||||
|
|
||||||
message = %{
|
message = %{
|
||||||
|
|
Loading…
Reference in a new issue