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/accounts.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/accounts.ts')
-rw-r--r-- | server/controllers/api/accounts.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/controllers/api/accounts.ts b/server/controllers/api/accounts.ts index 86ef2aed1..a69a83acf 100644 --- a/server/controllers/api/accounts.ts +++ b/server/controllers/api/accounts.ts | |||
@@ -74,10 +74,10 @@ async function listVideoAccountChannels (req: express.Request, res: express.Resp | |||
74 | 74 | ||
75 | async function listAccountVideos (req: express.Request, res: express.Response, next: express.NextFunction) { | 75 | async function listAccountVideos (req: express.Request, res: express.Response, next: express.NextFunction) { |
76 | const account: AccountModel = res.locals.account | 76 | const account: AccountModel = res.locals.account |
77 | const actorId = isUserAbleToSearchRemoteURI(res) ? null : undefined | 77 | const followerActorId = isUserAbleToSearchRemoteURI(res) ? null : undefined |
78 | 78 | ||
79 | const resultList = await VideoModel.listForApi({ | 79 | const resultList = await VideoModel.listForApi({ |
80 | actorId, | 80 | followerActorId, |
81 | start: req.query.start, | 81 | start: req.query.start, |
82 | count: req.query.count, | 82 | count: req.query.count, |
83 | sort: req.query.sort, | 83 | sort: req.query.sort, |