fix(core): handle null values in modules constraints of SQL sources

This commit is contained in:
Francis Lachapelle
2021-09-13 09:49:14 -04:00
parent 0765c72616
commit f0368d028b
+1 -1
View File
@@ -420,7 +420,7 @@
recordValue = [record objectForKey: currentMatch];
result = NO;
if ([recordValue caseInsensitiveMatches: currentValue])
if ([recordValue isNotNull] && [recordValue caseInsensitiveMatches: currentValue])
result = YES;
}
}