fix typo for schedule name

This commit is contained in:
shoopea
2023-07-01 14:10:35 +02:00
parent db05789cfe
commit e07c1c4f3f
2 changed files with 6 additions and 6 deletions

4
app.go
View File

@@ -380,7 +380,7 @@ func (a *App) NextSchedule(now time.Time) (string, error) {
}
}
if t.Year() < now.Year() || t.Month() != now.Month() {
return "month", nil
return "monthly", nil
}
}
@@ -395,7 +395,7 @@ func (a *App) NextSchedule(now time.Time) (string, error) {
ny, nw := now.ISOWeek()
ty, tw := t.ISOWeek()
if ty < ny || tw < nw {
return "month", nil
return "weekly", nil
}
}