Fix incompatible types warning (Elixir 1.11)

This commit is contained in:
Mark Felder 2020-10-07 10:04:25 -05:00
parent d3106c69c8
commit 218a3e61e1
1 changed files with 2 additions and 2 deletions

View File

@ -412,7 +412,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do
object =
object
|> Map.merge(Map.take(params, ["to", "cc"]))
|> Map.put("attributedTo", user.ap_id())
|> Map.put("attributedTo", user.ap_id)
|> Transmogrifier.fix_object()
ActivityPub.create(%{
@ -456,7 +456,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do
%{assigns: %{user: %User{nickname: nickname} = user}} = conn,
%{"nickname" => nickname} = params
) do
actor = user.ap_id()
actor = user.ap_id
params =
params