aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/activitypub
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-01-08 11:30:48 +0100
committerChocobozzz <me@florianbigard.com>2018-01-08 11:30:58 +0100
commit108af66140713c4beec681a71d360ab788226528 (patch)
treecbc59800ee72a158ac5adfe6984470175a02d66c /server/controllers/activitypub
parent2cfe649635088de8582b3808b320dab598cb95c9 (diff)
downloadPeerTube-108af66140713c4beec681a71d360ab788226528.tar.gz
PeerTube-108af66140713c4beec681a71d360ab788226528.tar.zst
PeerTube-108af66140713c4beec681a71d360ab788226528.zip
Fix overflow in select inputs
Diffstat (limited to 'server/controllers/activitypub')
-rw-r--r--server/controllers/activitypub/client.ts2
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
17const activityPubClientRouter = express.Router() 17const activityPubClientRouter = express.Router()
18 18
19activityPubClientRouter.get('/accounts/:name', 19activityPubClientRouter.get('/accounts?/:name',
20 executeIfActivityPub(asyncMiddleware(localAccountValidator)), 20 executeIfActivityPub(asyncMiddleware(localAccountValidator)),
21 executeIfActivityPub(accountController) 21 executeIfActivityPub(accountController)
22) 22)