diff options
-rw-r--r-- | go.mod | 2 | ||||
-rw-r--r-- | main.go | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1 +1,3 @@ module njw.name/bbcschedule + +go 1.15 @@ -60,7 +60,7 @@ func fmtDate(d string) string { if err != nil { return d } - return t.Format(time.Kitchen) + return t.Local().Format(time.Kitchen) } // idFromUrn gets the ID from an iPlayer URN. This is the appropriate |