mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-02 21:56:23 +00:00
Revert "oc: cached usercontext updates indexing_context"
This reverts commit 0750f64b787db088e944756b66fbd0883cf44cbf.
This commit is contained in:
committed by
Julio García
parent
05578bfcb6
commit
bb9764bc6b
@@ -65,14 +65,7 @@ static NSMapTable *contextsTable = nil;
|
||||
id userContext;
|
||||
|
||||
userContext = [contextsTable objectForKey: username];
|
||||
if (userContext)
|
||||
{
|
||||
// The indexing_context used when this user context was created
|
||||
// could had been freed, so we have to update it and use the one
|
||||
// that we receive as parameter (which is a valid one for sure).
|
||||
[userContext updateIndexing: indexing];
|
||||
}
|
||||
else
|
||||
if (!userContext)
|
||||
{
|
||||
userContext = [[self alloc] initWithUsername: username
|
||||
andTDBIndexing: indexing];
|
||||
@@ -83,11 +76,6 @@ static NSMapTable *contextsTable = nil;
|
||||
return userContext;
|
||||
}
|
||||
|
||||
- (void) updateIndexing: (struct indexing_context *) indexing
|
||||
{
|
||||
[mapping updateIndexing: indexing];
|
||||
}
|
||||
|
||||
- (id) init
|
||||
{
|
||||
if ((self = [super init]))
|
||||
|
||||
Reference in New Issue
Block a user