Fix handling of accents when filtering contacts

Fixes #2656
This commit is contained in:
Francis Lachapelle
2014-03-20 15:29:32 -04:00
parent 893d75bd5f
commit 27ffcf240f
3 changed files with 15 additions and 16 deletions
+1 -1
View File
@@ -146,7 +146,7 @@
{
currentInfo = [currentContactDictionary objectForKey: key];
if ([currentInfo respondsToSelector: @selector (stringByEscapingHTMLString)])
[currentContactDictionary setObject: [currentInfo stringByEscapingHTMLString] forKey: key];
[currentContactDictionary setObject: currentInfo forKey: key];
}
[newContactsList addObject: currentContactDictionary];
}