forked from Galactic/galactic-bot
bugfix
This commit is contained in:
parent
ffb57d6e78
commit
7420d565e1
@ -170,8 +170,7 @@ class MongodbTable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_handleData(data) { //Convert data._id to Mongo ObjectIds
|
_handleData(data) { //Convert data._id to Mongo ObjectIds
|
||||||
console.log(data);
|
if (data._id && !(data._id instanceof ObjectId)) {
|
||||||
if (data._id) {
|
|
||||||
if (typeof data._id === 'string') data._id = ObjectId(data._id);
|
if (typeof data._id === 'string') data._id = ObjectId(data._id);
|
||||||
else if (typeof data._id === 'object') data._id = {
|
else if (typeof data._id === 'object') data._id = {
|
||||||
$in: Object.values(data._id)[0].map((id) => {
|
$in: Object.values(data._id)[0].map((id) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user