chore: add missing Cloudflare HTTP status codes (#7117)

Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Abhishek3880 2025-10-09 13:12:44 +05:30 committed by GitHub
parent 6306657396
commit f4970f35b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -62,6 +62,12 @@ const HttpStatusCode = {
LoopDetected: 508,
NotExtended: 510,
NetworkAuthenticationRequired: 511,
WebServerIsDown: 521,
ConnectionTimedOut: 522,
OriginIsUnreachable: 523,
TimeoutOccurred: 524,
SslHandshakeFailed: 525,
InvalidSslCertificate: 526,
};
Object.entries(HttpStatusCode).forEach(([key, value]) => {