1
0
Fork 0
mirror of synced 2024-07-13 02:05:54 +12:00

Down to 60 failures.

This commit is contained in:
Sam Rose 2024-06-13 12:34:22 +01:00
parent 69ab1ce44f
commit a82da51b30
No known key found for this signature in database

View file

@ -381,7 +381,11 @@ export const runQuery = (
return false
}
if (typeof docValue === "object" && typeof testValue === "string") {
if (
docValue &&
typeof docValue === "object" &&
typeof testValue === "string"
) {
return docValue._id === testValue
}