mirror of
https://github.com/tdurieux/anonymous_github.git
synced 2026-07-04 12:48:01 +02:00
fix: undefined in path.join
This commit is contained in:
+2
-2
@@ -144,8 +144,8 @@ export default async function start() {
|
|||||||
const time = Date.now() - start;
|
const time = Date.now() - start;
|
||||||
console.log(
|
console.log(
|
||||||
`${req.method} ${res.statusCode} ${join(
|
`${req.method} ${res.statusCode} ${join(
|
||||||
req.baseUrl,
|
req.baseUrl || "",
|
||||||
req.url
|
req.url || ""
|
||||||
)} ${time}ms`
|
)} ${time}ms`
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user