feat: Add listenbrainz base url configuration (#1774)

* feat: Add listenbrainz base url configuration

- ListenBrainz.BaseURL config value

* Don't need to store baseUrl

* Use `url.JoinPath` to concatenate url paths

* Replace url.JoinPath (Go 1.19 only) with custom function

Co-authored-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Andy Klimczak 2022-09-27 21:06:28 -04:00 committed by GitHub
parent cb3ba23fce
commit 2f7a3c5eda
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 34 additions and 17 deletions

View file

@ -98,6 +98,7 @@ type spotifyOptions struct {
type listenBrainzOptions struct {
Enabled bool
BaseURL string
}
var (
@ -254,6 +255,7 @@ func init() {
viper.SetDefault("spotify.id", "")
viper.SetDefault("spotify.secret", "")
viper.SetDefault("listenbrainz.enabled", true)
viper.SetDefault("listenbrainz.baseurl", "https://api.listenbrainz.org/1/")
// DevFlags. These are used to enable/disable debugging and incomplete features
viper.SetDefault("devlogsourceline", false)