This commit is contained in:
2021-04-12 00:17:29 +02:00
parent 03ca0c8677
commit d293e93fa8
2 changed files with 6 additions and 9 deletions

View File

@@ -3,8 +3,7 @@ package internal
func RunCron() error {
c := GetConfig()
for _, l := range c.Locations {
err := l.RunCron()
if err != nil {
if err := l.RunCron(); err != nil {
return err
}
}