Disable Christmas

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2023-01-13 19:46:41 +01:00 committed by Alexander Borsuk
parent 3b60daee40
commit 1912710579

View file

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