This commit is contained in:
syuilo 2018-09-10 01:57:19 +09:00
parent 1344ffa67d
commit e32884f07f
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -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