Enable donates and NY for Google 231218

This commit is contained in:
Roman Tsisyk 2023-12-19 09:11:01 +03:00 committed by GitHub
parent 4468cdd776
commit 923b8f7274
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ export async function getServersList(request: Request) {
};
// Disable donates for reviewers for all app versions AFTER this one.
const lastApprovedAndReleasedGoogleAppVersionCode = 231117;
const lastApprovedAndReleasedGoogleAppVersionCode = 231218;
const lastApprovedAndReleasediOSAppVersionCode = 231213;
let donatesEnabled = true;
if (
@ -149,12 +149,12 @@ export async function getServersList(request: Request) {
if (request.cf?.country == 'RU') {
response.settings = {
DonateUrl: DONATE_URL_RU,
NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash
NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash
};
} else {
response.settings = {
DonateUrl: DONATE_URL,
NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash
NY: 'true', // Must be `string` instead of `bool`, otherwise clients will crash
};
}
}