Skip to content

Commit

Permalink
Adds missing !
Browse files Browse the repository at this point in the history
  • Loading branch information
dgwaldo authored Dec 29, 2017
1 parent 1f061bc commit ac26c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MixERP.Net.VCards/Parser/TokenParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ private static Dictionary<string, string> GetAdditionalKeyMembers(string data)
{
value = splitted[1].Trim('"').Trim('\'');
}
if (members.ContainsKey(key))
if (!members.ContainsKey(key))
{
members.Add(key, value);
}
Expand Down Expand Up @@ -136,4 +136,4 @@ public static IEnumerable<Token> Parse(string contents)
return tokens;
}
}
}
}

0 comments on commit ac26c03

Please sign in to comment.