Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 8b1bf3b

Browse files
author
Stanley Goldman
committed
Making the fix to TrackingCollection
1 parent db7abce commit 8b1bf3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/GitHub.Exports.Reactive/Collections/TrackingCollection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ ActionData ProcessItem(ActionData data, List<T> list)
540540
if (newer != null)
541541
{
542542
// the object is "older" than the one we have, ignore it
543-
if (newer(item, old) > 0)
543+
if (newer(item, old) >= 0)
544544
return new ActionData(TheAction.Ignore, list, item, null, idx, idx);
545545
}
546546

0 commit comments

Comments
 (0)