Fixed use of incorrect Contains method
This commit is contained in:
parent
d2ed993a60
commit
53281322d4
|
@ -647,7 +647,7 @@ namespace AsterNET
|
||||||
{
|
{
|
||||||
string name = line.Substring(0, delimiterIndex).ToLower(CultureInfo).Trim();
|
string name = line.Substring(0, delimiterIndex).ToLower(CultureInfo).Trim();
|
||||||
string val = line.Substring(delimiterIndex + 1).Trim();
|
string val = line.Substring(delimiterIndex + 1).Trim();
|
||||||
if (list.ContainsKey(name))
|
if (list.Contains(name))
|
||||||
list[name] += Environment.NewLine + val;
|
list[name] += Environment.NewLine + val;
|
||||||
else if (val == "<null>")
|
else if (val == "<null>")
|
||||||
list[name] = null;
|
list[name] = null;
|
||||||
|
|
Loading…
Reference in a new issue