1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 10:29:54 +00:00

include wiki in options sent to generateTiddlerFilePath

This commit is contained in:
Jeremy Ruston 2019-07-03 17:54:58 +01:00 committed by GitHub
commit d489f61f2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -225,7 +225,8 @@ exports.generateTiddlerFileInfo = function(tiddler,options) {
fileInfo.filepath = $tw.utils.generateTiddlerFilepath(tiddler.fields.title,{
extension: contentTypeInfo.extension,
directory: options.directory,
pathFilters: options.pathFilters
pathFilters: options.pathFilters,
wiki: options.wiki
});
return fileInfo;
};