From 08b661bb59ec42b5bf94267457e8211f987392f0 Mon Sep 17 00:00:00 2001 From: hallgren Date: Mon, 13 Feb 2012 19:23:52 +0000 Subject: [PATCH] gfse: bug fix in grammar download from cloud --- src/www/gfse/cloud2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/www/gfse/cloud2.js b/src/www/gfse/cloud2.js index 8cfaa077d..e05d44bc8 100644 --- a/src/www/gfse/cloud2.js +++ b/src/www/gfse/cloud2.js @@ -153,7 +153,7 @@ function download_json() { local.put("current",0); if(ls) { //debug("Downloading "+ls); - var files=ls.split(" "); + var files=JSON.parse(ls); cleanup_deleted(files); for(var i in files) get_file(files[i],file_downloaded,file_failed); }