mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 11:25:24 +00:00
We need to store the message UID as NSString keys rather than NSNumber instances, otherwise the lookups occurring later using NSString keys will not work
This commit is contained in:
@@ -364,8 +364,8 @@ static NSString *defaultUserID = @"anyone";
|
||||
for (count = 0; count < max ; count++)
|
||||
{
|
||||
infos = [allValues objectAtIndex: count];
|
||||
[prefetchedInfos setObject: infos
|
||||
forKey: [infos objectForKey: @"uid"]];
|
||||
key = [NSString stringWithFormat: @"%@", [infos objectForKey: @"uid"]];
|
||||
[prefetchedInfos setObject: infos forKey: key];
|
||||
}
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user