fix count of poll voters

buildx
FloatingGhost 2 years ago
parent 2e895b6c02
commit 4e8ab0deeb

@ -68,7 +68,7 @@ defmodule Pleroma.Web.MastodonAPI.PollView do
end)
end
defp voters_count(%{data: %{"voters" => [_ | _] = voters}}) do
defp voters_count(%{data: %{"voters" => voters}}) when is_list(voters) do
length(voters)
end

Loading…
Cancel
Save