AccountController: Build the correct update activity.

Will fix federation issues.
This commit is contained in:
lain 2020-08-10 10:33:05 +02:00
commit 66122a11b5
2 changed files with 5 additions and 1 deletions

View file

@ -214,6 +214,10 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController.UpdateCredentialsTest do
assert user_data = json_response_and_validate_schema(conn, 200)
assert user_data["display_name"] == "markorepairs"
update_activity = Repo.one(Pleroma.Activity)
assert update_activity.data["type"] == "Update"
assert update_activity.data["object"]["name"] == "markorepairs"
end
test "updates the user's avatar", %{user: user, conn: conn} do