From 387f75a4d36f3adf89a7b0be22e926097403e078 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Fri, 31 Oct 2025 12:20:30 +0000 Subject: [PATCH] use cors proxy correctly --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 25a9857..d292227 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,8 +16,8 @@ export default class Updater { } private async getRawArchive(): Promise { - const res = await fetch(`https://cors.emaker.limited/?url=${this.archiveURL}.${this.feedType}`, { - "mode": "cors" + const res = await fetch(`http://cors.emaker.limited/?url=${this.archiveURL}.${this.feedType}`, { + // "mode": "cors" }); const text = await res.text(); return text;