diff options
Diffstat (limited to 'server/controllers')
-rw-r--r-- | server/controllers/api/accounts.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/controllers/api/accounts.ts b/server/controllers/api/accounts.ts index e807b4f44..e31924a94 100644 --- a/server/controllers/api/accounts.ts +++ b/server/controllers/api/accounts.ts | |||
@@ -175,7 +175,8 @@ async function listAccountVideos (req: express.Request, res: express.Response) { | |||
175 | withFiles: false, | 175 | withFiles: false, |
176 | accountId: account.id, | 176 | accountId: account.id, |
177 | user: res.locals.oauth ? res.locals.oauth.token.User : undefined, | 177 | user: res.locals.oauth ? res.locals.oauth.token.User : undefined, |
178 | countVideos | 178 | countVideos, |
179 | search: req.query.search | ||
179 | }, 'filter:api.accounts.videos.list.params') | 180 | }, 'filter:api.accounts.videos.list.params') |
180 | 181 | ||
181 | const resultList = await Hooks.wrapPromiseFun( | 182 | const resultList = await Hooks.wrapPromiseFun( |