diff options
author | Nick White <git@njw.name> | 2021-06-28 10:56:03 +0100 |
---|---|---|
committer | Nick White <git@njw.name> | 2021-06-28 10:56:03 +0100 |
commit | 83404846111021fa9fdf53da6f79cf20423fe52f (patch) | |
tree | 15e2b77c6d6bc080713e8ad50d15fba597c88e4f | |
parent | ad79c7f2527e6e48b5ecc0a66e6de260fa3ac17b (diff) | |
download | bbcschedule-master.tar.bz2 bbcschedule-master.zip |
-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 |