fix wrong bitrate
This commit is contained in:
parent
915d21eff2
commit
79160856f8
|
@ -546,7 +546,7 @@ function stream(req::Dict)
|
|||
@error e
|
||||
end
|
||||
# Ogg is not compativle with lower bitrates. Use something else?
|
||||
bitrate = bitrate < 64 ? 64 : bitrate
|
||||
bitrate = (bitrate != 0 && bitrate < 64) ? 64 : bitrate
|
||||
format = get(query, "format", "oga")
|
||||
|
||||
songs = Beets.songs()
|
||||
|
|
Loading…
Reference in New Issue