diff options
author | Chocobozzz <me@florianbigard.com> | 2018-01-08 11:30:48 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-01-08 11:30:58 +0100 |
commit | 108af66140713c4beec681a71d360ab788226528 (patch) | |
tree | cbc59800ee72a158ac5adfe6984470175a02d66c /server/controllers | |
parent | 2cfe649635088de8582b3808b320dab598cb95c9 (diff) | |
download | PeerTube-108af66140713c4beec681a71d360ab788226528.tar.gz PeerTube-108af66140713c4beec681a71d360ab788226528.tar.zst PeerTube-108af66140713c4beec681a71d360ab788226528.zip |
Fix overflow in select inputs
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/activitypub/client.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/controllers/activitypub/client.ts b/server/controllers/activitypub/client.ts index 717473912..d1a761724 100644 --- a/server/controllers/activitypub/client.ts +++ b/server/controllers/activitypub/client.ts | |||
@@ -16,7 +16,7 @@ import { VideoShareModel } from '../../models/video/video-share' | |||
16 | 16 | ||
17 | const activityPubClientRouter = express.Router() | 17 | const activityPubClientRouter = express.Router() |
18 | 18 | ||
19 | activityPubClientRouter.get('/accounts/:name', | 19 | activityPubClientRouter.get('/accounts?/:name', |
20 | executeIfActivityPub(asyncMiddleware(localAccountValidator)), | 20 | executeIfActivityPub(asyncMiddleware(localAccountValidator)), |
21 | executeIfActivityPub(accountController) | 21 | executeIfActivityPub(accountController) |
22 | ) | 22 | ) |