X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Fmiddlewares%2Fvideo-channels.ts;h=e6eab65a28a0d43238bdc6b7ee9ccca2e6e82082;hb=1fa23d6f5e487f3c149e1f0001beadd919ee82fc;hp=05499bb74c0a40fc65dce586a5b95b6bc9b2d9d6;hpb=2d53be0267acc49cda46707b885096193a1f4e9c;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/middlewares/video-channels.ts b/server/helpers/middlewares/video-channels.ts index 05499bb74..e6eab65a2 100644 --- a/server/helpers/middlewares/video-channels.ts +++ b/server/helpers/middlewares/video-channels.ts @@ -1,7 +1,7 @@ import * as express from 'express' -import { VideoChannelModel } from '../../models/video/video-channel' -import { MChannelAccountDefault } from '@server/types/models' +import { MChannelBannerAccountDefault } from '@server/types/models' import { HttpStatusCode } from '../../../shared/core-utils/miscs/http-error-codes' +import { VideoChannelModel } from '../../models/video/video-channel' async function doesLocalVideoChannelNameExist (name: string, res: express.Response) { const videoChannel = await VideoChannelModel.loadLocalByNameAndPopulateAccount(name) @@ -29,11 +29,10 @@ export { doesVideoChannelNameWithHostExist } -function processVideoChannelExist (videoChannel: MChannelAccountDefault, res: express.Response) { +function processVideoChannelExist (videoChannel: MChannelBannerAccountDefault, res: express.Response) { if (!videoChannel) { res.status(HttpStatusCode.NOT_FOUND_404) .json({ error: 'Video channel not found' }) - .end() return false }