Use Enum.any? to ensure we return true if there are results

This commit is contained in:
Mark Felder 2020-12-04 11:04:53 -06:00
parent a02eb88396
commit 4aad066091
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ defmodule Mix.Tasks.Pleroma.Config do
defp group_exists?(group) do
group
|> ConfigDB.get_all_by_group()
|> Enum.empty?()
|> Enum.any?()
end
defp maybe_atomize(arg) when is_atom(arg), do: arg