Fix route

This commit is contained in:
Bryan Ashby 2023-01-08 20:43:16 -07:00
parent 44c67f5327
commit 01cd91b045
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ exports.getModule = class ActivityPubWebHandler extends WebHandlerModule {
this.webServer.addRoute({
method: 'GET',
path: /^\/_enig\/ap\/users\/.+$/,
path: /^\/_enig\/ap\/users\/[^\/]+$/,
handler: this._selfUrlRequestHandler.bind(this),
});