This commit is contained in:
GH Action - Upstream Sync
2024-10-27 01:13:27 +00:00
35 changed files with 692 additions and 67 deletions

View File

@@ -100,7 +100,8 @@ export function fetch(url: string, options?: RequestInit): Promise<any> {
})
.catch((e) => {
console.error("stream error", e);
throw e;
// throw e;
return new Response("", { status: 599 });
});
}
return window.fetch(url, options);