From 77dfb3aab0595316c4eb87529883ad65893577ed Mon Sep 17 00:00:00 2001 From: Jernej Pregelj Date: Thu, 28 Mar 2019 15:40:39 +0100 Subject: [PATCH] blob to arraybuffer --- src/brizo/Brizo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/brizo/Brizo.ts b/src/brizo/Brizo.ts index b051f8d..7b06150 100644 --- a/src/brizo/Brizo.ts +++ b/src/brizo/Brizo.ts @@ -97,7 +97,7 @@ export class Brizo extends Instantiable { const response = await WebServiceConnectorProvider .getConnector() .get(url) - await save(await response.blob(), path) + await save(await response.arrayBuffer(), path) return path } }