Skip to content

Commit

Permalink
Use filename as default title when loading tiddlers under Node
Browse files Browse the repository at this point in the history
Fixing this regression gets the `classictools` plugin working again
  • Loading branch information
Jermolene committed Nov 5, 2017
1 parent 6555fec commit 95b84dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boot/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 95b84dd

Please sign in to comment.