From: Ekaterina Vaartis Date: Sun, 1 Sep 2019 12:38:45 +0000 (+0300) Subject: Use && insted of "and" for checking shared-files for packs X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=13cd93a0d314238427c217ec0ab8f59f329321f5;p=akkoma Use && insted of "and" for checking shared-files for packs share-files can be nil and "and" does not like that --- diff --git a/lib/pleroma/web/emoji_api/emoji_api_controller.ex b/lib/pleroma/web/emoji_api/emoji_api_controller.ex index 0bd9cd207..f34a4e08c 100644 --- a/lib/pleroma/web/emoji_api/emoji_api_controller.ex +++ b/lib/pleroma/web/emoji_api/emoji_api_controller.ex @@ -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)