mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-23 18:17:20 +00:00
Fix removesuffix filter when title is undefined (#3827)
This commit is contained in:
parent
26c6d6035e
commit
784db30614
@ -18,7 +18,7 @@ Export our filter function
|
|||||||
exports.removesuffix = function(source,operator,options) {
|
exports.removesuffix = function(source,operator,options) {
|
||||||
var results = [];
|
var results = [];
|
||||||
source(function(tiddler,title) {
|
source(function(tiddler,title) {
|
||||||
if(title.substr(-operator.operand.length) === operator.operand) {
|
if(title && title.substr(-operator.operand.length) === operator.operand) {
|
||||||
results.push(title.substr(0,title.length - operator.operand.length));
|
results.push(title.substr(0,title.length - operator.operand.length));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user