We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da4849 commit f48115fCopy full SHA for f48115f
routers/api/v1/activitypub/person.go
@@ -59,8 +59,8 @@ func Person(ctx *context.APIContext) {
59
URL: ap.IRI(ctx.ContextUser.AvatarLink()),
60
}
61
62
- person.Inbox, _ = ap.Inbox.AddTo(person)
63
- person.Outbox, _ = ap.Outbox.AddTo(person)
+ person.Inbox = ap.IRI(link + "/inbox")
+ person.Outbox = ap.IRI(link + "/outbox")
64
65
person.PublicKey.ID = ap.IRI(link + "#main-key")
66
person.PublicKey.Owner = ap.IRI(link)
0 commit comments