From 7b1cb06e94a7af399ae0323fbb6ed4beb7569f86 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 13 Apr 2016 10:58:35 +0200 Subject: [PATCH] Also allow navigating to symlinked directories --- src/components/app/component.tag | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/app/component.tag b/src/components/app/component.tag index f75c4b5..85259aa 100644 --- a/src/components/app/component.tag +++ b/src/components/app/component.tag @@ -11,7 +11,7 @@ app browser.navigate(path.join(__dirname, "../../../")); browser.on("clickEntry", function(entry) { - if (entry.type === "folder") { + if (entry.targetType === "folder") { browser.navigate(entry.path); } })