Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix datetime format in card list filter. #260

Merged
merged 2 commits into from Oct 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Manatee.Trello/ReadOnlyCardCollection.cs
Expand Up @@ -77,9 +77,9 @@ public void Filter(CardFilter filter)
public void Filter(DateTime? start, DateTime? end)
{
if (start != null)
AdditionalParameters["since"] = start;
AdditionalParameters["since"] = start.Value.ToUniversalTime().ToString("O");
if (end != null)
AdditionalParameters["before"] = end;
AdditionalParameters["before"] = end.Value.ToUniversalTime().ToString("O");
}

internal sealed override async Task PerformRefresh(bool force, CancellationToken ct)
Expand Down Expand Up @@ -151,4 +151,4 @@ void IHandle<EntityDeletedEvent<IJsonCard>>.Handle(EntityDeletedEvent<IJsonCard>
Items.Remove(item);
}
}
}
}