diff options
author | Teddy Wing | 2018-04-15 01:05:45 +0200 |
---|---|---|
committer | Teddy Wing | 2018-04-15 01:05:45 +0200 |
commit | 2140a2f63ce6f8da3684806d814d905987013de5 (patch) | |
tree | 2f71138698031391b758a8536d974b93e971b0b1 /src/main.rs | |
parent | ba4929ff7ba4314db3ad2b749dfd35b78f1a6b20 (diff) | |
download | meetup-find-events-rss-2140a2f63ce6f8da3684806d814d905987013de5.tar.bz2 |
Use the correct time format for `end_date_range`
The Meetup API requires the `end_date_range` param to use this format,
otherwise it responds with an error.
Eventually we'll want to make this an actual time type and then
`strftime` it to this string.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 8961e86..4c54e85 100644 --- a/src/main.rs +++ b/src/main.rs @@ -63,7 +63,7 @@ fn run() -> Result<()> { meetup_token, "48".to_owned(), "2".to_owned(), - "2018-04-14".to_owned(), + "2018-04-17T00:00:00".to_owned(), None, None, ).chain_err(|| "could not write RSS feed.")?; |