Cleo
Cleo
is solved
It was just a problem that I did myself. To solve it i just started the server with --unhandled-rejections=none. So it doesnt stop with it. Now my only question is...
If you need someone who answers the questions and extends the wiki, I could help you.
the problem is still there
function getTimetable(timeTableEntity, dateInWeek) { return new Promise((resolve, reject) => { if (isUndefined(timeTableEntity)) { throw Error("please pass a timeTableEntity"); } if (isUndefined(dateInWeek) || !isDate(dateInWeek)) { dateInWeek = moment(); } let startDate...