mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 05:02:37 +01:00
🐛 fix findOne exists query
This commit is contained in:
parent
89b5f6963a
commit
11ace49d8c
@ -52,10 +52,17 @@ mongoose.plugin((schema: Schema, opts: any) => {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
schema.post("findOne", (doc, next) => {
|
schema.post("findOne", function (doc, next) {
|
||||||
if (!doc) return next(new HTTPError("Not found", 404));
|
try {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
return next();
|
const isExistsQuery = JSON.stringify(this._userProvidedFields) === JSON.stringify({ _id: 1 });
|
||||||
|
if (!doc && !isExistsQuery) return next(new HTTPError("Not found", 404));
|
||||||
|
// @ts-ignore
|
||||||
|
return next();
|
||||||
|
} catch (error) {
|
||||||
|
// @ts-ignore
|
||||||
|
next();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user