mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
use nullish for these
This commit is contained in:
parent
314a413506
commit
8b66d2a715
1 changed files with 11 additions and 11 deletions
|
@ -342,26 +342,26 @@ 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 ?? '??',
|
||||||
httpversion: request.cf?.httpProtocol || 'Unknown HTTP Version',
|
httpversion: request.cf?.httpProtocol ?? 'Unknown HTTP Version',
|
||||||
tlsversion: request.cf?.tlsVersion || 'Unknown TLS Version',
|
tlsversion: request.cf?.tlsVersion ?? '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') ??
|
||||||
'Unknown IP',
|
'Unknown IP',
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||||
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.city despite it being a real property
|
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.city despite it being a real property
|
||||||
city: request.cf?.city || 'Unknown City',
|
city: request.cf?.city ?? 'Unknown City',
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||||
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country / region despite it being a real property
|
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country / region despite it being a real property
|
||||||
region: request.cf?.region || request.cf?.country || 'Unknown Region',
|
region: request.cf?.region ?? request.cf?.country ?? 'Unknown Region',
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
||||||
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country despite it being a real property
|
// @ts-ignore - @cloudflare/workers-types v4 is missing IncomingRequestCfProperties.country despite it being a real property
|
||||||
country: request.cf?.country || 'Unknown Country',
|
country: request.cf?.country ?? 'Unknown Country',
|
||||||
asn: `AS${request.cf?.asn || '??'} (${
|
asn: `AS${request.cf?.asn ?? '??'} (${
|
||||||
request.cf?.asOrganization || 'Unknown ASN'
|
request.cf?.asOrganization ?? 'Unknown ASN'
|
||||||
})`,
|
})`,
|
||||||
ua: sanitizeText(request.headers.get('user-agent') || 'Unknown User Agent')
|
ua: sanitizeText(request.headers.get('user-agent') ?? 'Unknown User Agent')
|
||||||
}),
|
}),
|
||||||
{
|
{
|
||||||
headers: {
|
headers: {
|
||||||
|
|
Loading…
Add table
Reference in a new issue