Skip to content

Commit f0087f4

Browse files
authored
fix: BulkConcurrentObservableCollection::Remove returns false if item not found (#9345)
1 parent 528dd77 commit f0087f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.Uwp/Helpers/ItemListDisplayHelpers/BulkConcurrentObservableCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ public bool Remove(T item)
283283

284284
if (index == -1)
285285
{
286-
return true;
286+
return false;
287287
}
288288

289289
collection.RemoveAt(index);

0 commit comments

Comments
 (0)