From 0e9800e61dd311c00c2a9094bad405f8ca2ef93d Mon Sep 17 00:00:00 2001 From: MightyPork Date: Sun, 3 Nov 2013 21:43:50 +0100 Subject: [PATCH] Downloader to use 'text' dataType. --- js/lores.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/lores.js b/js/lores.js index c9e0c78..be86b51 100644 --- a/js/lores.js +++ b/js/lores.js @@ -1074,7 +1074,7 @@ LoresDownloader.prototype.run = function(readyFn) { if(dl.done) continue; - $.get(dl.url, self._makeDlHandler(dl, readyFn)); + $.get(dl.url, self._makeDlHandler(dl, readyFn), "text"); } };