activitypub: when unfollowing, update the follow activity's disposition to 'cancelled' so it cannot be reused

This commit is contained in:
William Pitcock 2018-05-27 13:51:13 +00:00
parent a2c4a5a75b
commit 76f80ba8c2
1 changed files with 1 additions and 0 deletions

View File

@ -214,6 +214,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
def unfollow(follower, followed, activity_id \\ nil, local \\ true) do
with %Activity{} = follow_activity <- fetch_latest_follow(follower, followed),
{:ok, follow_activity} <- update_follow_state(follow_activity, "cancelled"),
unfollow_data <- make_unfollow_data(follower, followed, follow_activity, activity_id),
{:ok, activity} <- insert(unfollow_data, local),
:ok <- maybe_federate(activity) do