Not an error. Don't log it as such. (#35)

ContactThreads and GroupThreads share a collection.

// FREEBIE
This commit is contained in:
Michael Kirk 2016-09-27 20:47:35 -04:00 committed by GitHub
parent c5edc9997a
commit 06538f6b46

View file

@ -49,7 +49,7 @@ NS_ASSUME_NONNULL_BEGIN
[TSGroupThread enumerateCollectionObjectsUsingBlock:^(id obj, BOOL *stop) {
if (![obj isKindOfClass:[TSGroupThread class]]) {
DDLogError(@"Unexpected class in group collection: %@", obj);
DDLogVerbose(@"Ignoring non group thread in thread collection: %@", obj);
return;
}
TSGroupModel *group = ((TSGroupThread *)obj).groupModel;