amazon-archives / skill-sample-nodejs-calendar-reader

An Alexa Skill Sample showing how to import calendar data from an .ICS file.
Other
75 stars 89 forks source link

"next month", "december" and other month only phrases do not work #16

Open nitinsurana opened 7 years ago

nitinsurana commented 7 years ago

Alexa returns "2015-12" which according to the code

 Date.parse("2015-12")

returns the 1st of december and is not a NaN

nitinsurana commented 7 years ago

For others coming here, the fix can be found at https://github.com/nitinsurana/dorm-events-alexa/blob/master/src/index.js#L326

nitinsurana commented 7 years ago

@jeffblankenburg Would you like a pull-request for this ?

geddyleefan commented 7 years ago

Sorry, I'm just trying to learn this stuff, could someone explain how to fix that in this example? I'm not sure where I would put what @nitinsurana posted as the fix.