forked from AkkomaGang/akkoma
Refresh the object in CommonAPI.vote instead of MastoAPI controller
This commit is contained in:
parent
67bcc3ccc4
commit
e3c460353d
2 changed files with 1 additions and 2 deletions
|
@ -141,6 +141,7 @@ def vote(user, object, choices) do
|
|||
})
|
||||
end)
|
||||
|
||||
object = Object.get_cached_by_ap_id(object.data["id"])
|
||||
{:ok, answer_activities, object}
|
||||
else
|
||||
{:author, _} -> {:error, "Already voted"}
|
||||
|
|
|
@ -436,8 +436,6 @@ def poll_vote(%{assigns: %{user: user}} = conn, %{"id" => id, "choices" => choic
|
|||
%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})
|
||||
|
|
Loading…
Reference in a new issue