From afca07f58e58b23ccc2eface63264711e6b0311b Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Mon, 21 Jun 2021 11:45:45 +0200 Subject: [PATCH] Added eu1 Warsaw server --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 141ca19..e219cff 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export {}; -const SERVERS = ['https://cdn.organicmaps.app/']; +const SERVERS = ['https://eu1.cdn.organicmaps.app/', 'https://cdn.organicmaps.app/']; addEventListener('fetch', (event) => { event.respondWith(handleRequest(event.request).catch((err) => new Response(err.stack, { status: 500 })));