Release 0.3.0-alpha.1 #164

Merged
Jef Roosens merged 78 commits from release-0.3.0-alpha.1 into main 2022-05-06 20:12:52 +02:00
Showing only changes of commit 5cde3d0235 - Show all commits

View file

@ -166,7 +166,7 @@ fn remove(conf Config, id_prefix string) ? {
fn patch(conf Config, id_prefix string, params map[string]string) ? {
// We check the cron expression first because it's useless to send an
// invalid one to the server.
if 'schedule' in params {
if 'schedule' in params && params['schedule'] != '' {
parse_expression(params['schedule']) or {
return error('Invalid cron expression: $err.msg()')
}