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
1 changed files with 5 additions and 1 deletions

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
}