mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 22:48:27 +02:00
Fix #867: Fixed remaining transcoding issue with Subsonic API
This commit is contained in:
parent
5e18333135
commit
38ab05195b
3 changed files with 7 additions and 5 deletions
|
@ -256,7 +256,7 @@ class SubsonicViewSet(viewsets.GenericViewSet):
|
|||
if max_bitrate:
|
||||
max_bitrate = max_bitrate * 1000
|
||||
|
||||
format = data.get("format", "raw") or None
|
||||
format = data.get("format") or None
|
||||
if max_bitrate and not format:
|
||||
# specific bitrate requested, but no format specified
|
||||
# so we use a default one, cf #867. This helps with clients
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue