Change argument order and call correct # of args

This commit is contained in:
Francis Dinh 2018-05-08 23:59:36 -04:00
parent e55f69a676
commit 54f6628590
2 changed files with 3 additions and 3 deletions

View File

@ -148,8 +148,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
def unannounce(
%User{} = actor,
%Object{} = object,
local \\ true,
activity_id \\ nil
activity_id \\ nil,
local \\ true
) do
with %Activity{} = announce_activity <- get_existing_announce(actor.ap_id, object),
unannounce_data <- make_unannounce_data(actor, announce_activity, activity_id),

View File

@ -231,7 +231,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
with %User{} = actor <- User.get_or_fetch_by_ap_id(actor),
{:ok, object} <-
get_obj_helper(object_id) || ActivityPub.fetch_object_from_id(object_id),
{:ok, activity} <- ActivityPub.unannounce(object, false) do
{:ok, activity} <- ActivityPub.unannounce(actor, object, id, false) do
{:ok, activity}
else
e -> :error