Skip to content

Commit 84af63f

Browse files
committed
Issue lxcid#77 - Fixing a crash when previousIndexPath is nil
1 parent 58b772e commit 84af63f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LXReorderableCollectionViewFlowLayout/LXReorderableCollectionViewFlowLayout.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ - (void)invalidateLayoutIfNecessary {
173173
NSIndexPath *newIndexPath = [self.collectionView indexPathForItemAtPoint:self.currentView.center];
174174
NSIndexPath *previousIndexPath = self.selectedItemIndexPath;
175175

176-
if ((newIndexPath == nil) || [newIndexPath isEqual:previousIndexPath]) {
176+
if ((newIndexPath == nil) || (previousIndexPath == nil) || [newIndexPath isEqual:previousIndexPath]) {
177177
return;
178178
}
179179

0 commit comments

Comments
 (0)