1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-09-27 06:38:19 +00:00

Fix typo preventing filter run prefix modules from being cached

This had a significant impact on performance.
This commit is contained in:
jeremy@jermolene.com 2020-11-25 13:58:54 +00:00
parent 94ffb50e04
commit 64ac29adca

View File

@ -188,7 +188,7 @@ exports.getFilterOperators = function() {
}; };
exports.getFilterRunPrefixes = function() { exports.getFilterRunPrefixes = function() {
if(!this.filterPrefixes) { if(!this.filterRunPrefixes) {
$tw.Wiki.prototype.filterRunPrefixes = {}; $tw.Wiki.prototype.filterRunPrefixes = {};
$tw.modules.applyMethods("filterrunprefix",this.filterRunPrefixes); $tw.modules.applyMethods("filterrunprefix",this.filterRunPrefixes);
} }