X-Git-Url: https://code.octet-stream.net/broadcaster/blobdiff_plain/7b615b3c71825b5b229b78509a16db37e1d3f38d..364c7ca21eae4dd7262c945f1feb10f136c3d064:/radio/config.go diff --git a/radio/config.go b/radio/config.go index 6837b7d..a91787e 100644 --- a/radio/config.go +++ b/radio/config.go @@ -27,7 +27,7 @@ func NewRadioConfig() RadioConfig { ServerURL: "", Token: "", CachePath: "", - TimeZone: "Australia/Hobart", + TimeZone: "Local", } } @@ -48,7 +48,7 @@ func (c *RadioConfig) Validate() error { return errors.New("ServerURL must be provided in the configuration") } if c.Token == "" { - return errors.New("Token must be provided in the configuration") + return errors.New("token must be provided in the configuration") } return nil }