Skip to content
This repository was archived by the owner on Sep 20, 2022. It is now read-only.

Commit 322c8db

Browse files
author
Jake Ginnivan
committed
Filter issues which have been updated since they closed
1 parent 2ad076d commit 322c8db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/GitReleaseNotes/IssueTrackers/GitHub/GitHubIssueTracker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public IEnumerable<OnlineIssue> GetClosedIssues(DateTimeOffset? since)
135135
Since = since,
136136
State = ItemState.Closed
137137
});
138-
var readOnlyList = forRepository.Result;
138+
var readOnlyList = forRepository.Result.Where(i => i.ClosedAt > since);
139139

140140
var userCache = new Dictionary<string, User>();
141141
Func<User, string> getUserName = u =>

0 commit comments

Comments
 (0)