mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-26 19:47:20 +00:00
Fix crash when wiki/themes folder contains files that are not themes
Fixes #370
This commit is contained in:
parent
3b255561b7
commit
175e86078c
@ -1256,7 +1256,7 @@ $tw.loadPluginFolder = function(filepath,excludeRegExp) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Give the plugin the same version number as the core if it doesn't have one
|
// Give the plugin the same version number as the core if it doesn't have one
|
||||||
if(!("version" in pluginInfo)) {
|
if(pluginInfo && !("version" in pluginInfo)) {
|
||||||
pluginInfo.version = $tw.packageInfo.version;
|
pluginInfo.version = $tw.packageInfo.version;
|
||||||
}
|
}
|
||||||
// Save the plugin tiddler
|
// Save the plugin tiddler
|
||||||
|
Loading…
Reference in New Issue
Block a user