Disabled Christmas Tree

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2024-01-21 03:45:15 +02:00
parent d0524e78d1
commit 83919b9a79

View file

@ -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
};
}
}