This commit is contained in:
Mark Felder 2021-01-25 18:25:53 -06:00
parent 3f3d64acbf
commit 2cb5c16723
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ defmodule Pleroma.Web.MastodonAPI.PollView do
}
if params[:for] do
# if a user is not authenticated Mastodon doesn't include `voted` & `own_votes` keys in response
# when unauthenticated Mastodon doesn't include `voted` & `own_votes` keys in response
{voted, own_votes} = voted_and_own_votes(params, options)
Map.merge(poll, %{voted: voted, own_votes: own_votes})
else