We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3432193 commit 8bd2ea9Copy full SHA for 8bd2ea9
1 file changed
webserver/webserver.go
@@ -207,7 +207,7 @@ func getHistoricalStats(ctx *gin.Context) {
207
208
func getSchedule(ctx *gin.Context) {
209
if scheduler != nil {
210
- nextRun := scheduler.Entry(cronEntry).Next.String()
+ nextRun := scheduler.Entry(cronEntry).Next.UTC().String()
211
ctx.JSON(200, nextRun)
212
} else {
213
ctx.JSON(200, nil)
0 commit comments