mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-15 11:53:17 +00:00
fix(core): handle null values in modules constraints of SQL sources
This commit is contained in:
@@ -420,7 +420,7 @@
|
||||
recordValue = [record objectForKey: currentMatch];
|
||||
result = NO;
|
||||
|
||||
if ([recordValue caseInsensitiveMatches: currentValue])
|
||||
if ([recordValue isNotNull] && [recordValue caseInsensitiveMatches: currentValue])
|
||||
result = YES;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user