Fix for usage of models instead of objects dictionary key

This commit is contained in:
Blake Watters
2011-03-21 19:54:46 -04:00
parent 102180abce
commit 52b2f9ffcb

View File

@@ -138,7 +138,7 @@
}
}
NSDictionary* infoDictionary = [[NSDictionary dictionaryWithObjectsAndKeys:response, @"response", models, @"models", nil] retain];
NSDictionary* infoDictionary = [[NSDictionary dictionaryWithObjectsAndKeys:response, @"response", models, @"objects", nil] retain];
[self performSelectorOnMainThread:@selector(informDelegateOfObjectLoadWithInfoDictionary:) withObject:infoDictionary waitUntilDone:YES];
}