Make sure HTTP request Date in GMT

This commit is contained in:
Anthony Wang
2022-06-13 23:10:36 -05:00
parent d749f8ff4f
commit 08eebffb0e
3 changed files with 9 additions and 7 deletions
+5 -5
View File
@@ -56,13 +56,13 @@ func Person(ctx *context.APIContext) {
ctx.Error(http.StatusInternalServerError, "Set PreferredUsername", err)
return
}
person.URL = ap.IRI(setting.AppURL + username)
person.Icon = ap.Image{
Type: ap.ImageType,
Type: ap.ImageType,
MediaType: "image/png",
URL: ap.IRI(user.AvatarLink()),
URL: ap.IRI(user.AvatarLink()),
}
person.Inbox = nil
@@ -91,12 +91,12 @@ func Person(ctx *context.APIContext) {
ctx.Error(http.StatusInternalServerError, "Unmarshall", err)
}
jsonmap["@context"] = []string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"}
jsonmap["@context"] = []string{"https://www.w3.org/ns/activitystreams", "https://w3id.org/security/v1"}
ctx.Resp.Header().Add("Content-Type", "application/activity+json")
ctx.Resp.WriteHeader(http.StatusOK)
binary, _ = json.Marshal(jsonmap)
ctx.Resp.Write(binary)
_, _ = ctx.Resp.Write(binary)
}
// PersonInbox function