diff options
Diffstat (limited to 'server/tests/fixtures/peertube-plugin-test/main.js')
-rw-r--r-- | server/tests/fixtures/peertube-plugin-test/main.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/server/tests/fixtures/peertube-plugin-test/main.js b/server/tests/fixtures/peertube-plugin-test/main.js index f8e6f0b98..db405ff31 100644 --- a/server/tests/fixtures/peertube-plugin-test/main.js +++ b/server/tests/fixtures/peertube-plugin-test/main.js | |||
@@ -234,7 +234,7 @@ async function register ({ registerHook, registerSetting, settingsManager, stora | |||
234 | }) | 234 | }) |
235 | 235 | ||
236 | { | 236 | { |
237 | const searchHooks = [ | 237 | const filterHooks = [ |
238 | 'filter:api.search.videos.local.list.params', | 238 | 'filter:api.search.videos.local.list.params', |
239 | 'filter:api.search.videos.local.list.result', | 239 | 'filter:api.search.videos.local.list.result', |
240 | 'filter:api.search.videos.index.list.params', | 240 | 'filter:api.search.videos.index.list.params', |
@@ -246,10 +246,13 @@ async function register ({ registerHook, registerSetting, settingsManager, stora | |||
246 | 'filter:api.search.video-playlists.local.list.params', | 246 | 'filter:api.search.video-playlists.local.list.params', |
247 | 'filter:api.search.video-playlists.local.list.result', | 247 | 'filter:api.search.video-playlists.local.list.result', |
248 | 'filter:api.search.video-playlists.index.list.params', | 248 | 'filter:api.search.video-playlists.index.list.params', |
249 | 'filter:api.search.video-playlists.index.list.result' | 249 | 'filter:api.search.video-playlists.index.list.result', |
250 | |||
251 | 'filter:api.overviews.videos.list.params', | ||
252 | 'filter:api.overviews.videos.list.result' | ||
250 | ] | 253 | ] |
251 | 254 | ||
252 | for (const h of searchHooks) { | 255 | for (const h of filterHooks) { |
253 | registerHook({ | 256 | registerHook({ |
254 | target: h, | 257 | target: h, |
255 | handler: (obj) => { | 258 | handler: (obj) => { |