Emoji: Don't die when files are present in the emoji folder.
authorlain <lain@soykaf.club>
Tue, 4 Jun 2019 10:01:21 +0000 (12:01 +0200)
committerlain <lain@soykaf.club>
Tue, 4 Jun 2019 10:14:43 +0000 (12:14 +0200)
lib/pleroma/emoji.ex

index 7d12eff7fe2982901b130ee4a604e71536c5e046..de7fcc1ce0c4f4412038291f740b729327ee794d 100644 (file)
@@ -97,10 +97,22 @@ defmodule Pleroma.Emoji do
         # There was some other error
         Logger.error("Could not access the custom emoji directory #{emoji_dir_path}: #{e}")
 
-      {:ok, packs} ->
+      {:ok, results} ->
+        grouped = Enum.group_by(results, &File.dir?/1)
+        packs = grouped[true] || []
+        files = grouped[false] || []
+
         # Print the packs we've found
         Logger.info("Found emoji packs: #{Enum.join(packs, ", ")}")
 
+        if not Enum.empty?(files) do
+          Logger.warn(
+            "Found files in the emoji folder. These will be ignored, please move them to a subdirectory\nFound files: #{
+              Enum.join(files, ", ")
+            }"
+          )
+        end
+
         emojis =
           Enum.flat_map(
             packs,