api/core: rename req and next args to indicate that they're unused
This commit is contained in:
parent
0aae3fe7f0
commit
3317726afe
1 changed files with 1 additions and 1 deletions
|
@ -292,7 +292,7 @@ export const runAPI = (express, app, __dirname) => {
|
|||
})
|
||||
|
||||
// handle all express errors
|
||||
app.use((_, req, res, next) => {
|
||||
app.use((_, __, res, ___) => {
|
||||
return fail(res, "error.api.generic");
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in a new issue