Fix cron edits not working from web interface

This commit is contained in:
Tim Van Baak 2023-06-21 18:51:03 -07:00
parent 312e231ea6
commit 96c657f0ee
1 changed files with 2 additions and 0 deletions

View File

@ -299,6 +299,8 @@ def _parse_source_config(config_str: str):
config = {"action": parsed["action"]}
if "env" in parsed:
config["env"] = parsed["env"]
if "cron" in parsed:
config["cron"] = parsed["cron"]
return (None, config)