mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 10:25:36 +00:00
Fixing sample (#1879)
This commit is contained in:
committed by
Ryan Gribble
parent
5a9e78ad6d
commit
2cdc2679b1
+1
-1
@@ -45,7 +45,7 @@ For example, this is how you could find all issues updated in the past two weeks
|
||||
var recently = new IssueRequest
|
||||
{
|
||||
Filter = IssueFilter.All,
|
||||
State = ItemState.All,
|
||||
State = ItemStateFilter.All,
|
||||
Since = DateTimeOffset.Now.Subtract(TimeSpan.FromDays(14))
|
||||
};
|
||||
var issues = await client.Issue.GetAllForCurrent(recently);
|
||||
|
||||
Reference in New Issue
Block a user