oops, wasn't properly resolving the array buffer in web requests

This commit is contained in:
Braydon 2024-04-15 07:51:20 -04:00
parent 1eb4a9ec0e
commit a218dc7ec3

@ -38,7 +38,7 @@ export class WebRequest {
} }
} else { } else {
// Fallback to an array buffer // Fallback to an array buffer
return (await response.arrayBuffer()) as T; resolve((await response.arrayBuffer()) as T);
} }
}); });
} }