From 02aaa2d1344563bc14774634f805bee6dd9fa424 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Mon, 8 Jul 2019 15:02:03 -0400 Subject: [PATCH] icon should probably be Image type --- activity.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/activity.go b/activity.go index 73daa61..698743d 100644 --- a/activity.go +++ b/activity.go @@ -905,7 +905,7 @@ func asjonker(user *WhatAbout) junk.Junk { j["summary"] = about j["url"] = user.URL a := junk.New() - a["type"] = "icon" + a["type"] = "Image" a["mediaType"] = "image/png" a["url"] = fmt.Sprintf("https://%s/a?a=%s", serverName, url.QueryEscape(user.URL)) j["icon"] = a