use a cors proxy to avoid rss feed fetch issues

This commit is contained in:
2025-10-30 22:50:52 +00:00
parent 572eae3306
commit 9ca320907e
3 changed files with 7 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ export default class Updater {
}
private async getRawArchive(): Promise<string> {
const res = await fetch(`${this.archiveURL}.${this.feedType}`, {
const res = await fetch(`https://cors.emaker.limited/?url=${this.archiveURL}.${this.feedType}`, {
"mode": "cors"
});
const text = await res.text();