Skip to content

Commit

Permalink
fix: add publicURL to inbox ID
Browse files Browse the repository at this point in the history
  • Loading branch information
catdevnull committed Mar 7, 2024
1 parent 81b1009 commit af424e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/api/inbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const inboxRoutes = (cfg: APIConfig, store: Store, apsystem: ActivityPubS
const orderedCollection: APOrderedCollection = {
'@context': 'https://www.w3.org/ns/activitystreams',
type: 'OrderedCollection',
id: request.url,
id: `${cfg.publicURL}${request.url}`,
orderedItems
}
return await reply.send(orderedCollection)
Expand Down

0 comments on commit af424e9

Please sign in to comment.