Skip to content

Commit

Permalink
Disabled Christmas Tree
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Borsuk <[email protected]>
  • Loading branch information
biodranik committed Jan 21, 2024
1 parent d0524e7 commit 83919b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/servers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}
}
Expand Down

0 comments on commit 83919b9

Please sign in to comment.