From d70f78cfe7e7f78be44774482d25132956c4aedb Mon Sep 17 00:00:00 2001 From: Naoki Kosaka Date: Thu, 29 Nov 2018 14:22:38 +0900 Subject: [PATCH] Fix Actor context. --- ActivityPub/models.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ActivityPub/models.go b/ActivityPub/models.go index dcb4eab..14dbeae 100644 --- a/ActivityPub/models.go +++ b/ActivityPub/models.go @@ -36,7 +36,7 @@ type Actor struct { } func (a *Actor) GenerateSelfKey(hostname *url.URL, publickey *rsa.PublicKey) { - a.Context = []string{"https://www.w3.org/ns/activitystreams"} + a.Context = []string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"} a.ID = hostname.String() + "/actor" a.Type = "Service" a.PreferredUsername = "relay"