Skip to content

Commit 0cb3ff3

Browse files
committed
Don't use cdn-us1 (Cloudflare + Backbaze) for the actual versions
Cloudflare almost always have lowest ping, leaving no chance to other servers to server data for iOS users. Viktor reported some issues with Cloudflare from Argentina. "Let's see if us-west1 + us-east1 + uk1 + nl1 servers can handle America and Oceania.
1 parent b8200aa commit 0cb3ff3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/servers.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ export async function getServersList(request: Request) {
130130
case 'NA': // North America
131131
case 'SA': // South America
132132
case 'OC': // Oceania
133-
servers = [SERVER.backblaze, SERVER.us_east1, SERVER.us_west1, SERVER.uk1, SERVER.nl1, SERVER.planet].filter(
134-
(server) => DATA_VERSIONS.slice(-server.dataVersions).includes(dataVersion),
133+
servers = [SERVER.us_east1, SERVER.us_west1, SERVER.uk1, SERVER.nl1, SERVER.planet].filter((server) =>
134+
DATA_VERSIONS.slice(-server.dataVersions).includes(dataVersion),
135135
);
136136
break;
137137
default:

0 commit comments

Comments
 (0)