From 83919b9a792b6780c7450ac8db2fc422ea6f29c3 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Sun, 21 Jan 2024 03:45:15 +0200 Subject: [PATCH] Disabled Christmas Tree Signed-off-by: Alexander Borsuk --- src/servers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers.ts b/src/servers.ts index 43fb64c..5a1e651 100644 --- a/src/servers.ts +++ b/src/servers.ts @@ -149,12 +149,12 @@ export async function getServersList(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 }; } }