瀏覽代碼

Base64 decode AJAX-fetched text properly

Scott Lahteine 9 年之前
父節點
當前提交
978dadf806
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/configurator/js/configurator.js

+ 1
- 1
Marlin/configurator/js/configurator.js 查看文件

@@ -240,7 +240,7 @@ window.configuratorApp = (function(){
240 240
                   timeLeft: Math.floor(txt.meta['X-RateLimit-Reset'] - Date.now()/1000),
241 241
                 };
242 242
               }
243
-              loaded_items[fname] = function(){ self.fileLoaded(fname, isGithub ? atob(txt.data.content.replace(/\s/g, '')) : txt, true); };
243
+              loaded_items[fname] = function(){ self.fileLoaded(fname, isGithub ? decodeURIComponent(escape(atob(txt.data.content))) : txt, true); };
244 244
               success_count++;
245 245
             }
246 246
           },

Loading…
取消
儲存