fix(subsonic): allow unlimited bitrate with no transcode setting configured

fixes #485

Release-As: 0.16.4
This commit is contained in:
sentriz
2024-03-20 21:02:32 +00:00
parent 62d49a33d1
commit 81f8a7ec49

View File

@@ -199,8 +199,8 @@ func (c *Controller) ServeStream(w http.ResponseWriter, r *http.Request) *spec.R
return spec.NewError(0, "couldn't find transcode preference: %v", err)
}
if pref == nil {
if maxBitRate > 0 {
return spec.NewError(0, "maxBitRate requested and no user transcode preferences found for user %q and client %q", user.Name, client)
if maxBitRate > 0 && maxBitRate < audioFile.AudioBitrate() {
return spec.NewError(0, "param maxBitRate requested and no user transcode preferences found for user %q and client %q. please configure transcode settings if you want to transcode", user.Name, client)
}
log.Printf("serving raw file, no user transcode preferences found for user %q and client %q", user.Name, client)
http.ServeFile(w, r, file.AbsPath())