forked from AkkomaGang/akkoma
Fix emoji.txt / custom_emoji.txt / shortcode_globs handling
This commit is contained in:
parent
ba19ba8a88
commit
3cefdc62e0
1 changed files with 16 additions and 11 deletions
|
@ -101,22 +101,27 @@ defp load do
|
||||||
# Print the packs we've found
|
# Print the packs we've found
|
||||||
Logger.info("Found emoji packs: #{Enum.join(packs, ", ")}")
|
Logger.info("Found emoji packs: #{Enum.join(packs, ", ")}")
|
||||||
|
|
||||||
# compat thing for old custom emoji handling
|
|
||||||
shortcode_globs = Application.get_env(:pleroma, :emoji)[:shortcode_globs] || []
|
|
||||||
|
|
||||||
emojis =
|
emojis =
|
||||||
(Enum.flat_map(
|
Enum.flat_map(
|
||||||
packs,
|
packs,
|
||||||
fn pack -> load_pack(Path.join(emoji_dir_path, pack)) end
|
fn pack -> load_pack(Path.join(emoji_dir_path, pack)) end
|
||||||
) ++
|
)
|
||||||
load_from_file("config/emoji.txt") ++
|
|
||||||
load_from_file("config/custom_emoji.txt") ++
|
|
||||||
load_from_globs(shortcode_globs))
|
|
||||||
|> Enum.reject(fn value -> value == nil end)
|
|
||||||
|
|
||||||
true = :ets.insert(@ets, emojis)
|
true = :ets.insert(@ets, emojis)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Compat thing for old custom emoji handling & default emoji,
|
||||||
|
# it should run even if there are no emoji packs
|
||||||
|
shortcode_globs = Application.get_env(:pleroma, :emoji)[:shortcode_globs] || []
|
||||||
|
|
||||||
|
emojis =
|
||||||
|
(load_from_file("config/emoji.txt") ++
|
||||||
|
load_from_file("config/custom_emoji.txt") ++
|
||||||
|
load_from_globs(shortcode_globs))
|
||||||
|
|> Enum.reject(fn value -> value == nil end)
|
||||||
|
|
||||||
|
true = :ets.insert(@ets, emojis)
|
||||||
|
|
||||||
:ok
|
:ok
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue