Remove double slash in unfollow activity
This commit is contained in:
parent
dd6d19cc8b
commit
9e02116c0c
1 changed files with 1 additions and 1 deletions
2
actor.go
2
actor.go
|
@ -680,7 +680,7 @@ func (a *Actor) Unfollow(user string) {
|
||||||
|
|
||||||
follow["@context"] = context()
|
follow["@context"] = context()
|
||||||
follow["actor"] = a.iri
|
follow["actor"] = a.iri
|
||||||
follow["id"] = baseURL + "/item/" + hash
|
follow["id"] = baseURL + "item/" + hash
|
||||||
follow["object"] = user
|
follow["object"] = user
|
||||||
follow["type"] = "Follow"
|
follow["type"] = "Follow"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue