Fix bug
This commit is contained in:
parent
813c52f51e
commit
cc8a7dd588
1 changed files with 5 additions and 1 deletions
|
@ -25,7 +25,11 @@ export async function getNote(noteId: mongo.ObjectID) {
|
|||
export async function getUser(userId: mongo.ObjectID) {
|
||||
const user = await User.findOne({
|
||||
_id: userId,
|
||||
isDeleted: false
|
||||
$or: [{
|
||||
isDeleted: { $exists: false }
|
||||
}, {
|
||||
isDeleted: false
|
||||
}]
|
||||
}, {
|
||||
fields: {
|
||||
data: false,
|
||||
|
|
Loading…
Reference in a new issue