Make Jukebox available to Subsonic clients

This commit is contained in:
Deluan 2023-09-14 20:15:20 -04:00
parent 248bf232ff
commit 2cd4358172
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@ func (api *Router) GetUser(r *http.Request) (*responses.Subsonic, error) {
response.User.ScrobblingEnabled = true
response.User.DownloadRole = conf.Server.EnableDownloads
response.User.ShareRole = conf.Server.EnableSharing
response.User.JukeboxRole = conf.Server.Jukebox.Enabled
return response, nil
}
@ -39,6 +40,7 @@ func (api *Router) GetUsers(r *http.Request) (*responses.Subsonic, error) {
user.ScrobblingEnabled = true
user.DownloadRole = conf.Server.EnableDownloads
user.ShareRole = conf.Server.EnableSharing
user.JukeboxRole = conf.Server.Jukebox.Enabled
response := newResponse()
response.Users = &responses.Users{User: []responses.User{user}}
return response, nil