X-Git-Url: https://code.octet-stream.net/broadcaster/blobdiff_plain/c94fef11f43279165f39680fa0b0922c86702687..58bdba17879dd4866007647d06e2bdce1acf1f59:/radio/config.go diff --git a/radio/config.go b/radio/config.go index 3152653..331f9f5 100644 --- a/radio/config.go +++ b/radio/config.go @@ -27,7 +27,7 @@ func NewRadioConfig() RadioConfig { ServerURL: "", Token: "", CachePath: "", - TimeZone: "Australia/Hobart", + TimeZone: "Local", } } @@ -66,5 +66,5 @@ func (c *RadioConfig) ApplyDefaults() { func (c *RadioConfig) WebsocketURL() string { addr := strings.Replace(c.ServerURL, "https://", "wss://", -1) addr = strings.Replace(addr, "http://", "ws://", -1) - return addr + "/radiosync" + return addr + "/radio-ws" }