feat: bump electron (#14158)

This commit is contained in:
DarkSky
2025-12-27 23:54:11 +08:00
committed by GitHub
parent 702dbf7be4
commit 6514614df8
9 changed files with 435 additions and 256 deletions

View File

@@ -352,7 +352,8 @@ export class CloudBlobStorage extends BlobStorageBase {
: undefined;
try {
return await globalThis.fetch(input, {
const resolvedUrl = new URL(input, this.options.serverBaseUrl).toString();
return await globalThis.fetch(resolvedUrl, {
...init,
signal: abortController.signal,
});