X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=server%2Fcontrollers%2Fservices.ts;h=680c3c37f4b3b07b0d1e34779ff3a085d3cadb39;hb=418d092afa81e2c8fe8ac6838fc4b5eb0af6a782;hp=352d0b19a8bb096c7e26d800fe5be499c4044573;hpb=b427febb4d5cebf03b815bca2c59af6e82491569;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index 352d0b19a..680c3c37f 100644 --- a/server/controllers/services.ts +++ b/server/controllers/services.ts @@ -1,7 +1,7 @@ import * as express from 'express' import { CONFIG, EMBED_SIZE, PREVIEWS_SIZE } from '../initializers' import { asyncMiddleware, oembedValidator } from '../middlewares' -import { accountsNameWithHostGetValidator } from '../middlewares/validators' +import { accountNameWithHostGetValidator } from '../middlewares/validators' import { VideoModel } from '../models/video/video' const servicesRouter = express.Router() @@ -11,7 +11,7 @@ servicesRouter.use('/oembed', generateOEmbed ) servicesRouter.use('/redirect/accounts/:accountName', - asyncMiddleware(accountsNameWithHostGetValidator), + asyncMiddleware(accountNameWithHostGetValidator), redirectToAccountUrl )