DEV: Fix "no-unsafe-finally" lint (#24587)

This commit is contained in:
Jarek Radosz 2023-11-28 10:54:13 +01:00 committed by GitHub
parent 916e1371b3
commit 70dc6bcfd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ to serve API requests. For example:
`);
} finally {
if (!res.headersSent) {
return next();
next();
}
}
});