forked from FoundKeyGang/FoundKey
Fix #1740
This commit is contained in:
parent
1344ffa67d
commit
e32884f07f
1 changed files with 3 additions and 2 deletions
|
@ -128,7 +128,8 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
|
||||||
let q: any = {
|
let q: any = {
|
||||||
$and: [{
|
$and: [{
|
||||||
tagsLower: ps.tag.toLowerCase()
|
tagsLower: ps.tag.toLowerCase()
|
||||||
}]
|
}],
|
||||||
|
deletedAt: { $exists: false }
|
||||||
};
|
};
|
||||||
|
|
||||||
const push = (x: any) => q.$and.push(x);
|
const push = (x: any) => q.$and.push(x);
|
||||||
|
@ -339,7 +340,7 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
|
||||||
}
|
}
|
||||||
|
|
||||||
if (q.$and.length == 0) {
|
if (q.$and.length == 0) {
|
||||||
q = {};
|
delete q.$and;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search notes
|
// Search notes
|
||||||
|
|
Loading…
Reference in a new issue