You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.
For derat/nup#10, I made the server truncate responses to a bit under 32 MB to avoid hitting App Engine's limit. The Android client needs to be updated to handle this properly -- right now, it assumes that it'll get a 200 response containing all of the data unless it explicitly sent a Range header to resume an interrupted download.
The text was updated successfully, but these errors were encountered:
Parse Content-Range headers included in 206 responses to
handle the server intentionally sending partial data to
avoid hitting App Engine's 32 MB limit.
This implementation is incomplete, since FileCache should
make additional requests to get the rest of the data. Right
now, it won't download the next chunk until the next time
that the song is prepared for playback.
263639a made the client automatically request the rest of the song. Previously, it just downloaded the first 32 MB and didn't send another request until the next time the song was played.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
For derat/nup#10, I made the server truncate responses to a bit under 32 MB to avoid hitting App Engine's limit. The Android client needs to be updated to handle this properly -- right now, it assumes that it'll get a 200 response containing all of the data unless it explicitly sent a
Range
header to resume an interrupted download.The text was updated successfully, but these errors were encountered: