diff --git a/Source/IGListKit/IGListAdapter.m b/Source/IGListKit/IGListAdapter.m index c3eae9cb..11500480 100644 --- a/Source/IGListKit/IGListAdapter.m +++ b/Source/IGListKit/IGListAdapter.m @@ -1274,7 +1274,7 @@ typedef struct OffsetRange { - (void)performBatchAnimated:(BOOL)animated updates:(void (^)(id))updates completion:(void (^)(BOOL))completion { IGAssertMainThread(); IGParameterAssert(updates != nil); - IGAssert(self.collectionView != nil, @"Performing batch updates without a collection view."); + IGWarn(self.collectionView != nil, @"Performing batch updates without a collection view."); [self _enterBatchUpdates]; __weak __typeof__(self) weakSelf = self;