diff options
author | Chocobozzz <me@florianbigard.com> | 2018-12-05 14:36:05 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-12-05 14:36:05 +0100 |
commit | 4e74e8032be8293ffe3cb3c30528d4ef7c11a798 (patch) | |
tree | 71e75e137720f2cebc33dbc67076778b77e3db5e /server/controllers/api/video-channel.ts | |
parent | ddb83e49ece4e76df1af98aeea30c1d8d133f48c (diff) | |
download | PeerTube-4e74e8032be8293ffe3cb3c30528d4ef7c11a798.tar.gz PeerTube-4e74e8032be8293ffe3cb3c30528d4ef7c11a798.tar.zst PeerTube-4e74e8032be8293ffe3cb3c30528d4ef7c11a798.zip |
Remove inferred type
Diffstat (limited to 'server/controllers/api/video-channel.ts')
-rw-r--r-- | server/controllers/api/video-channel.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/video-channel.ts b/server/controllers/api/video-channel.ts index 63240dfa1..fd143a139 100644 --- a/server/controllers/api/video-channel.ts +++ b/server/controllers/api/video-channel.ts | |||
@@ -202,10 +202,10 @@ async function getVideoChannel (req: express.Request, res: express.Response, nex | |||
202 | 202 | ||
203 | async function listVideoChannelVideos (req: express.Request, res: express.Response, next: express.NextFunction) { | 203 | async function listVideoChannelVideos (req: express.Request, res: express.Response, next: express.NextFunction) { |
204 | const videoChannelInstance: VideoChannelModel = res.locals.videoChannel | 204 | const videoChannelInstance: VideoChannelModel = res.locals.videoChannel |
205 | const actorId = isUserAbleToSearchRemoteURI(res) ? null : undefined | 205 | const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined |
206 | 206 | ||
207 | const resultList = await VideoModel.listForApi({ | 207 | const resultList = await VideoModel.listForApi({ |
208 | actorId, | 208 | followerActorId, |
209 | start: req.query.start, | 209 | start: req.query.start, |
210 | count: req.query.count, | 210 | count: req.query.count, |
211 | sort: req.query.sort, | 211 | sort: req.query.sort, |