From 2c2e1c9f2f45de77ddeb8256f9b9448923e1f42a Mon Sep 17 00:00:00 2001 From: Marius Orcsik Date: Thu, 7 Jun 2018 17:46:34 +0200 Subject: [PATCH] Proper LinkType --- src/activitypub/object.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/activitypub/object.go b/src/activitypub/object.go index 120e197..6607841 100644 --- a/src/activitypub/object.go +++ b/src/activitypub/object.go @@ -24,7 +24,7 @@ const ( // ActivityBaseURI the basic URI for the activity streams namespaces ActivityBaseURI URI = URI("https://www.w3.org/ns/activitystreams#") ObjectType ActivityVocabularyType = "ActivityPubObject" - LinkType ActivityVocabularyType = "GetLink" + LinkType ActivityVocabularyType = "Link" ActivityType ActivityVocabularyType = "Activity" IntransitiveActivityType ActivityVocabularyType = "IntransitiveActivity" ActorType ActivityVocabularyType = "Actor"