X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fcontrollers%2Fservices.ts;h=680c3c37f4b3b07b0d1e34779ff3a085d3cadb39;hb=09979f8959425390b879bce22101a9bc061ae9a0;hp=bd4404b6222879c20e3104087c49af3c3e258b72;hpb=49799b165e3cd547f1dbb23bd31369baca0b39da;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/controllers/services.ts b/server/controllers/services.ts index bd4404b62..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 ) @@ -29,8 +29,8 @@ function generateOEmbed (req: express.Request, res: express.Response, next: expr const maxHeight = parseInt(req.query.maxheight, 10) const maxWidth = parseInt(req.query.maxwidth, 10) - const embedUrl = webserverUrl + video.getEmbedPath() - let thumbnailUrl = webserverUrl + video.getPreviewPath() + const embedUrl = webserverUrl + video.getEmbedStaticPath() + let thumbnailUrl = webserverUrl + video.getPreviewStaticPath() let embedWidth = EMBED_SIZE.width let embedHeight = EMBED_SIZE.height