mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-04-06 18:56:56 +00:00
Fixed varlist crash with empty parameter
This commit is contained in:
parent
c5ad429493
commit
4cfa758d51
@ -19,7 +19,7 @@ Export our filter function
|
||||
*/
|
||||
exports.varlist = function(source,operator,options) {
|
||||
// Check for common optimisations
|
||||
var variableInfo = options.widget.getVariableInfo(operator.operand);
|
||||
var variableInfo = operator.operand && options.widget.getVariableInfo(operator.operand);
|
||||
if(variableInfo) {
|
||||
return options.wiki.makeTiddlerIterator(variableInfo.resultList);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user