diff --git a/SoObjects/Contacts/NSArray+Contacts.m b/SoObjects/Contacts/NSArray+Contacts.m index fe4ce974f..0b3512d5d 100644 --- a/SoObjects/Contacts/NSArray+Contacts.m +++ b/SoObjects/Contacts/NSArray+Contacts.m @@ -28,8 +28,8 @@ { id firstObject, otherFirstObject; - firstObject = [self objectAtIndex: 0]; - otherFirstObject = [otherRecord objectAtIndex: 0]; + firstObject = [self count] > 0 ? [self objectAtIndex: 0] : nil; + otherFirstObject = [otherRecord count] > 0 ? [otherRecord objectAtIndex: 0] : nil; return [firstObject compareCaseInsensitiveAscending: otherFirstObject]; }