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

pull/273/merge
Francis Lachapelle 2021-09-13 09:49:14 -04:00
parent 0765c72616
commit f0368d028b
1 changed files with 1 additions and 1 deletions

View File

@ -420,7 +420,7 @@
recordValue = [record objectForKey: currentMatch];
result = NO;
if ([recordValue caseInsensitiveMatches: currentValue])
if ([recordValue isNotNull] && [recordValue caseInsensitiveMatches: currentValue])
result = YES;
}
}