From 9e02116c0c8af4f5ebd32495a3ad6e44febef7d3 Mon Sep 17 00:00:00 2001 From: Michael Demetriou Date: Thu, 5 Dec 2019 15:28:12 +0200 Subject: [PATCH] Remove double slash in unfollow activity --- actor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actor.go b/actor.go index 99f83d7..7ac539d 100644 --- a/actor.go +++ b/actor.go @@ -680,7 +680,7 @@ func (a *Actor) Unfollow(user string) { follow["@context"] = context() follow["actor"] = a.iri - follow["id"] = baseURL + "/item/" + hash + follow["id"] = baseURL + "item/" + hash follow["object"] = user follow["type"] = "Follow"