mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
use nullish for this
This commit is contained in:
parent
f27a5d4be8
commit
44ff4765ca
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ app.use('*', logger(customLogger));
|
||||||
|
|
||||||
app.use('*', async (c, next) => {
|
app.use('*', async (c, next) => {
|
||||||
if (c.req.raw.cf) {
|
if (c.req.raw.cf) {
|
||||||
console.log(`Hello from ⛅ ${c.req.raw.cf.colo || 'UNK'}`);
|
console.log(`Hello from ⛅ ${c.req.raw.cf.colo ?? 'UNK'}`);
|
||||||
}
|
}
|
||||||
console.log('userAgent', c.req.header('user-agent'));
|
console.log('userAgent', c.req.header('user-agent'));
|
||||||
await next();
|
await next();
|
||||||
|
|
Loading…
Add table
Reference in a new issue