Mastodon API: Refresh the object before rendering it after voting

This commit is contained in:
rinpatch 2019-06-01 21:41:49 +03:00
parent 444406167b
commit 6bc9e5c020
1 changed files with 2 additions and 0 deletions

View File

@ -436,6 +436,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
%Activity{} = activity <- Activity.get_create_by_object_ap_id(object.data["id"]),
true <- Visibility.visible_for_user?(activity, user),
{:ok, _activities, object} <- CommonAPI.vote(user, object, choices) do
object = Object.get_cached_by_ap_id(object.data["id"])
conn
|> put_view(StatusView)
|> try_render("poll.json", %{object: object, for: user})