Skip to content

Commit

Permalink
fix updatedAfter filter for GetIssuesInProject
Browse files Browse the repository at this point in the history
  • Loading branch information
rekolobov committed Jul 5, 2021
1 parent 825b68c commit cf5812d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/YouTrackSharp/Issues/IssuesService.Querying.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public async Task<ICollection<Issue>> GetIssuesInProject(string projectId, strin
var queryString = "project:" + projectId;
if (updatedAfter.HasValue)
{
queryString += " updated:" + updatedAfter?.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss");
queryString += " updated:" + updatedAfter?.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss") + " .. *";
}
queryString += " " + filter ?? "";

Expand Down

0 comments on commit cf5812d

Please sign in to comment.