mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2026-05-31 01:32:18 +00:00
Fix problem with search term being filtered from search results
Some leftover code meant that tiddlers titled with the precise search term were excluded from the results.
This commit is contained in:
@@ -19,8 +19,7 @@ exports.search = function(source,operator,options) {
|
||||
var invert = operator.prefix === "!";
|
||||
return options.wiki.search(operator.operand,{
|
||||
titles: source,
|
||||
invert: invert,
|
||||
exclude: [operator.operand]
|
||||
invert: invert
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user