diff options
author | lain <lain@soykaf.club> | 2020-06-22 14:02:29 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-06-22 14:02:29 +0200 |
commit | b05f795326b77edd881ffea2c004d7ca0ddd7df9 (patch) | |
tree | c345799d8859640231407ad9c22fb085ca0428bd | |
parent | e785cd5caeab2c610f12a9071cade31a6b4549a4 (diff) | |
download | pleroma-b05f795326b77edd881ffea2c004d7ca0ddd7df9.tar.gz |
Credo fixes
-rw-r--r-- | lib/pleroma/web/mastodon_api/controllers/account_controller.ex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/pleroma/web/mastodon_api/controllers/account_controller.ex b/lib/pleroma/web/mastodon_api/controllers/account_controller.ex index f0499621a..d4605c518 100644 --- a/lib/pleroma/web/mastodon_api/controllers/account_controller.ex +++ b/lib/pleroma/web/mastodon_api/controllers/account_controller.ex @@ -20,8 +20,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountController do alias Pleroma.Plugs.RateLimiter alias Pleroma.User alias Pleroma.Web.ActivityPub.ActivityPub - alias Pleroma.Web.ActivityPub.Pipeline alias Pleroma.Web.ActivityPub.Builder + alias Pleroma.Web.ActivityPub.Pipeline alias Pleroma.Web.CommonAPI alias Pleroma.Web.MastodonAPI.ListView alias Pleroma.Web.MastodonAPI.MastodonAPI @@ -186,8 +186,8 @@ defmodule Pleroma.Web.MastodonAPI.AccountController do # We want to update the user through the pipeline, but the ActivityPub # update information is not quite enough for this, because this also # contains local settings that don't federate and don't even appear - # in the Update activity. - # + # in the Update activity. + # # So we first build the normal local changeset, then apply it to the # user data, but don't persist it. With this, we generate the object # data for our update activity. We feed this and the changeset as meta |