Use && insted of "and" for checking shared-files for packs
authorEkaterina Vaartis <vaartis@cock.li>
Sun, 1 Sep 2019 12:38:45 +0000 (15:38 +0300)
committerEkaterina Vaartis <vaartis@cock.li>
Wed, 18 Sep 2019 21:16:33 +0000 (00:16 +0300)
share-files can be nil and "and" does not like that

lib/pleroma/web/emoji_api/emoji_api_controller.ex

index 0bd9cd2074e6cee800351bc7353a426e4fc87224..f34a4e08cab291b6e1a61a1ee7fe14c215c6da92 100644 (file)
@@ -64,7 +64,7 @@ defmodule Pleroma.Web.EmojiAPI.EmojiAPIController do
     # If the pack is set as shared, check if it can be downloaded
     # That means that when asked, the pack can be packed and sent to the remote
     # Otherwise, they'd have to download it from external-src
-    pack["pack"]["share-files"] and
+    pack["pack"]["share-files"] &&
       Enum.all?(pack["files"], fn {_, path} ->
         File.exists?(Path.join(pack_path, path))
       end)