From 762813cb83ac97cdf2711ce174c0a308fa54c8cd Mon Sep 17 00:00:00 2001 From: Callum Macdonald Date: Wed, 27 Jan 2021 12:23:52 +0100 Subject: [PATCH] Don't assume octet-stream --- ReactNativeGit/patch-FileReader.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ReactNativeGit/patch-FileReader.js b/ReactNativeGit/patch-FileReader.js index e226cd3..881db64 100644 --- a/ReactNativeGit/patch-FileReader.js +++ b/ReactNativeGit/patch-FileReader.js @@ -8,9 +8,7 @@ FileReader.prototype.readAsArrayBuffer = function(blob) { this._error = null; const fr = new FileReader(); fr.onloadend = () => { - const content = atob( - fr.result.substr('data:application/octet-stream;base64,'.length), - ); + const content = atob(fr.result.replace(/data:[^;]+;base64,/, "")); const buffer = new ArrayBuffer(content.length); const view = new Uint8Array(buffer); view.set(Array.from(content).map(c => c.charCodeAt(0))); @@ -43,4 +41,4 @@ const atob = (input = '') => { } return output; -}; \ No newline at end of file +};