mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +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(
|
return new Response(
|
||||||
Strings.VERSION_HTML.format({
|
Strings.VERSION_HTML.format({
|
||||||
rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '',
|
rtt: request.cf?.clientTcpRtt ? `🏓 ${request.cf.clientTcpRtt} ms RTT` : '',
|
||||||
colo: request.cf?.colo ?? '??',
|
colo: request.cf?.colo as string ?? '??',
|
||||||
httpversion: request.cf?.httpProtocol ?? 'Unknown HTTP Version',
|
httpversion: request.cf?.httpProtocol as string ?? 'Unknown HTTP Version',
|
||||||
tlsversion: request.cf?.tlsVersion ?? 'Unknown TLS Version',
|
tlsversion: request.cf?.tlsVersion as string ?? 'Unknown TLS Version',
|
||||||
ip:
|
ip:
|
||||||
request.headers.get('x-real-ip') ??
|
request.headers.get('x-real-ip') ??
|
||||||
request.headers.get('cf-connecting-ip') ??
|
request.headers.get('cf-connecting-ip') ??
|
||||||
|
|
Loading…
Add table
Reference in a new issue