From 1912710579f5c8c722c0e63f0ed418bbc6bc0196 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 13 Jan 2023 19:46:41 +0100 Subject: [PATCH] Disable Christmas Signed-off-by: Alexander Borsuk --- src/index.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0d97f11..4a2fc83 100644 --- a/src/index.ts +++ b/src/index.ts @@ -118,6 +118,7 @@ export async function handleRequest(request: Request) { servers: string[]; settings?: { DonateUrl?: string; + NY?: string; }; } = { servers: servers, @@ -151,12 +152,12 @@ export async function handleRequest(request: Request) { if (request.cf?.country == 'RU') { response.settings = { DonateUrl: DONATE_URL_RU, - NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash + NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash }; } else { response.settings = { DonateUrl: DONATE_URL, - NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash + NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash }; } }