diff options
author | Roman Chvanikov <chvanikoff@gmail.com> | 2019-04-21 23:19:36 +0700 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@gmail.com> | 2019-04-21 23:19:36 +0700 |
commit | eeb093631cd50583feb4864a016d0dc1e4c58f5e (patch) | |
tree | f5699cc34eeb1ca5a2047b074d9f24394baa692f | |
parent | e56afefef9c0f256561c6ecab79e5520fdeb6d5e (diff) | |
download | pleroma-eeb093631cd50583feb4864a016d0dc1e4c58f5e.tar.gz |
Fix Credo warning
-rw-r--r-- | lib/pleroma/web/mastodon_api/views/conversation_view.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/mastodon_api/views/conversation_view.ex b/lib/pleroma/web/mastodon_api/views/conversation_view.ex index d841a840c..eb61baa03 100644 --- a/lib/pleroma/web/mastodon_api/views/conversation_view.ex +++ b/lib/pleroma/web/mastodon_api/views/conversation_view.ex @@ -3,9 +3,9 @@ defmodule Pleroma.Web.MastodonAPI.ConversationView do alias Pleroma.Activity alias Pleroma.Repo + alias Pleroma.Web.MastodonAPI.AccountView alias Pleroma.Web.ActivityPub.ActivityPub alias Pleroma.Web.MastodonAPI.StatusView - alias Pleroma.Web.MastodonAPI.AccountView def render("participation.json", %{participation: participation, user: user}) do participation = Repo.preload(participation, conversation: :users) |