mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Workaround for strange itty-router v4 test issues
This commit is contained in:
parent
68aa26be6f
commit
628e16203b
1 changed files with 3 additions and 3 deletions
|
@ -342,9 +342,9 @@ const versionRequest = async (request: IRequest) => {
|
|||
return new Response(
|
||||
Strings.VERSION_HTML.format({
|
||||
rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '',
|
||||
colo: request.cf?.colo ?? '??',
|
||||
httpversion: request.cf?.httpProtocol ?? 'Unknown HTTP Version',
|
||||
tlsversion: request.cf?.tlsVersion ?? 'Unknown TLS Version',
|
||||
colo: request.cf?.colo as string ?? '??',
|
||||
httpversion: request.cf?.httpProtocol as string ?? 'Unknown HTTP Version',
|
||||
tlsversion: request.cf?.tlsVersion as string ?? 'Unknown TLS Version',
|
||||
ip:
|
||||
request.headers.get('x-real-ip') ??
|
||||
request.headers.get('cf-connecting-ip') ??
|
||||
|
|
Loading…
Add table
Reference in a new issue