From 2140a2f63ce6f8da3684806d814d905987013de5 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 15 Apr 2018 01:05:45 +0200 Subject: 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. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.")?; -- cgit v1.2.3