Missed another place for LowerInvariant

This commit is contained in:
Matt Nadareski
2016-05-10 12:32:56 -07:00
parent d0dd7c89c7
commit f626cae2b1

View File

@@ -206,7 +206,7 @@ COMMIT;";
sources.Add(source.ToLowerInvariant(), sourceid);
}
// Otherwise, get the ID
else if (source != "" && sourceid == 0 && sources.ContainsKey(source))
else if (source != "" && sourceid == 0 && sources.ContainsKey(source.ToLowerInvariant()))
{
try
{