{#if page > 1}
diff --git a/src/pages/[manga]/index.svelte b/src/pages/[manga]/index.svelte
index fa1b0e6..27b899f 100644
--- a/src/pages/[manga]/index.svelte
+++ b/src/pages/[manga]/index.svelte
@@ -306,7 +306,7 @@
{#if relationships.find(t => t.type === "cover_art")}
-

selectedImage = `https://cors-anywhere.danbulant.workers.dev/?https://uploads.mangadex.org/covers/${mangaId}/${relationships.find(t => t.type === "cover_art").attributes.fileName}.512.jpg`}>
+

selectedImage = `https://cors-anywhere.danbulant.cloud/https://uploads.mangadex.org/covers/${mangaId}/${relationships.find(t => t.type === "cover_art").attributes.fileName}.512.jpg`}>
{/if}
{#if relationships.find(t => t.type === "author")}
diff --git a/src/util/baseGenerator.js b/src/util/baseGenerator.js
index 77fa02c..84c4ac0 100644
--- a/src/util/baseGenerator.js
+++ b/src/util/baseGenerator.js
@@ -62,7 +62,7 @@ export class BaseGenerator {
async fetchImage(url, chapter) {
var res;
try {
- res = await fetch("https://cors-anywhere.danbulant.workers.dev/?" + url);
+ res = await fetch("https://cors-anywhere.danbulant.cloud/" + url);
} catch(e) {
console.error(e);
res = await fetch(proxy + url);
diff --git a/src/util/request.js b/src/util/request.js
index 14612b0..d146d12 100644
--- a/src/util/request.js
+++ b/src/util/request.js
@@ -1,4 +1,4 @@
-export const proxy = "https://cors-anywhere.danbulant.workers.dev/?";
+export const proxy = "https://cors-anywhere.danbulant.cloud/";
export const base = proxy + "https://api.mangadex.org/";
function request(endpoint, query, type = "GET", body) {