diff --git a/lib/client.js b/lib/client.js index f3b3564d..9ad8cb9e 100644 --- a/lib/client.js +++ b/lib/client.js @@ -385,9 +385,9 @@ var Util, DOM, CloudFunc; if (!isRefresh && json) CloudCmd.createFileTable(obj, panel, nohistory); else - RESTful.read(cleanPath, 'json', function(json) { - CloudCmd.createFileTable(json, panel, nohistory); - Storage.set(cleanPath, json); + RESTful.read(cleanPath, 'json', function(obj) { + CloudCmd.createFileTable(obj, panel, nohistory); + Storage.set(cleanPath, obj); }); }); }