From 9c2258aa06dd67ceae958eaaec4585565562ec99 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sat, 15 Sep 2012 14:51:13 -0400 Subject: [PATCH] fixed bug with adding follbacks --- lib/server/appcache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/server/appcache.js b/lib/server/appcache.js index 14077afb..24a7cec2 100644 --- a/lib/server/appcache.js +++ b/lib/server/appcache.js @@ -31,7 +31,7 @@ exports.addFiles = function(pFileNames){ var lCurrentName = pFileNames[i]; if(typeof lCurrentName === 'object') for(var lName in lCurrentName){ - FallBack_s = lName + ' ' + lCurrentName[lName] + '\n'; + FallBack_s += lName + ' ' + lCurrentName[lName] + '\n'; exports.watch(lCurrentName[lName]); }