From 95b84dd0ca34d7ae4019d0f3c20a55eb5318096e Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sun, 5 Nov 2017 14:14:00 +0000 Subject: [PATCH] Use filename as default title when loading tiddlers under Node Fixing this regression gets the `classictools` plugin working again --- boot/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot/boot.js b/boot/boot.js index f3f716943..403a9a1e1 100644 --- a/boot/boot.js +++ b/boot/boot.js @@ -1527,7 +1527,7 @@ $tw.loadTiddlersFromPath = function(filepath,excludeRegExp) { }); } } else if(stat.isFile()) { - tiddlers.push($tw.loadTiddlersFromFile(filepath)); + tiddlers.push($tw.loadTiddlersFromFile(filepath,{title: filepath})); } } return tiddlers;