Remove DONATE_URL_RU

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2024-08-13 11:30:36 +01:00 committed by GitHub
parent 9a9af6fdcc
commit 671d4934db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -67,7 +67,6 @@ export const SERVER = {
// Exported for tests.
export const DONATE_URL = 'https://organicmaps.app/donate/';
export const DONATE_URL_RU = 'https://donate.organicmaps.ru/';
export async function getServersList(request: Request) {
// Private for map files.
@ -152,17 +151,10 @@ export async function getServersList(request: Request) {
if (donatesEnabled) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore workarounds error TS2339: Property 'country' does not exist on type 'IncomingRequestCfProperties<unknown>'.
if (request.cf?.country == 'RU') {
response.settings = {
DonateUrl: DONATE_URL_RU,
NY: 'false', // 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
};
}
response.settings = {
DonateUrl: DONATE_URL,
NY: 'false', // Must be `string` instead of `bool`, otherwise clients will crash
};
}
return new Response(JSON.stringify(response), {