summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--web/react/utils/utils.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 8fc25cc61..72ed48faf 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -716,7 +716,7 @@ Image.prototype.load = function(url, progressCallback) {
m = h.match( /^Content-Type\:\s*(.*?)$/mi ),
mimeType = m[ 1 ] || 'image/png';
- var blob = new Blob([this.response.buffer], { type: mimeType });
+ var blob = new Blob([this.response], { type: mimeType });
thisImg.src = window.URL.createObjectURL(blob);
};
xmlHTTP.onprogress = function(e) {