mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-03 01:20:58 +01:00
Remove ts-ignore from request.cf
This commit is contained in:
parent
c77e50b2a1
commit
e880cc7c37
1 changed files with 0 additions and 6 deletions
|
@ -349,14 +349,8 @@ const versionRequest = async (request: IRequest) => {
|
|||
request.headers.get('x-real-ip') ??
|
||||
request.headers.get('cf-connecting-ip') ??
|
||||
'Unknown IP',
|
||||
// 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
|
||||
city: request.cf?.city ?? 'Unknown City',
|
||||
// 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
|
||||
region: request.cf?.region ?? request.cf?.country ?? 'Unknown Region',
|
||||
// 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
|
||||
country: request.cf?.country ?? 'Unknown Country',
|
||||
asn: `AS${request.cf?.asn ?? '??'} (${
|
||||
request.cf?.asOrganization ?? 'Unknown ASN'
|
||||
|
|
Loading…
Add table
Reference in a new issue