From 76d18490f2f0cba466bd2e129d0127d783e0db05 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sun, 6 Nov 2016 09:49:33 +0200 Subject: [PATCH] fix(client) route: open file with module by hash: string.join -> string --- lib/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/client.js b/lib/client.js index 9b6b9538..ed4f06d1 100644 --- a/lib/client.js +++ b/lib/client.js @@ -213,7 +213,7 @@ var Util, DOM, CloudFunc, join; if (path) { module = query[0]; - module = module.slice(1).join(''); + module = module.slice(1); module = getStrBigFirst(module); file = query[1];