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

View File

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