From a50e6ab6943b8926ef6c4409a656d22c0b32eb0a Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 20 Jan 2014 04:48:48 -0500 Subject: [PATCH] fix(client) createFileTable: found -> !found --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 14a86076..c734a354 100644 --- a/lib/client.js +++ b/lib/client.js @@ -437,7 +437,7 @@ var Util, DOM, CloudFunc; } } } - if (found) /* .. */ + if (!found) /* .. */ lCurrent = files[0]; DOM.setCurrentFile(lCurrent);