fix: format jiggler.go with gofmt

This commit is contained in:
Adam Shiervani 2025-08-19 12:09:21 +02:00
parent 4fa02ed66a
commit 6b7fcfc3b3
1 changed files with 2 additions and 2 deletions

View File

@ -69,12 +69,12 @@ func initJiggler() {
func runJigglerCronTab() error {
cronTab := config.JigglerConfig.ScheduleCronTab
// Apply timezone if specified
if config.JigglerConfig.Timezone != "" && config.JigglerConfig.Timezone != "UTC" {
cronTab = fmt.Sprintf("TZ=%s %s", config.JigglerConfig.Timezone, cronTab)
}
s, err := gocron.NewScheduler()
if err != nil {
return err