Make Jukebox available to Subsonic clients

This commit is contained in:
Deluan 2023-09-14 20:15:20 -04:00 committed by Joe Stump
parent 033b2d1192
commit 4733c5bbd9
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

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