Workaround for strange itty-router v4 test issues

This commit is contained in:
dangered wolf 2023-09-10 11:15:09 -04:00
parent 68aa26be6f
commit 628e16203b
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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') ??