Merge branch 'dev' into accessebility
This commit is contained in:
commit
2097d2e4e4
|
@ -117,7 +117,9 @@ public class DownloadRunnable extends Thread {
|
||||||
byte[] buf = new byte[DownloadMission.BUFFER_SIZE];
|
byte[] buf = new byte[DownloadMission.BUFFER_SIZE];
|
||||||
int len;
|
int len;
|
||||||
|
|
||||||
while (start < end && mMission.running && (len = is.read(buf, 0, buf.length)) != -1) {
|
// use always start <= end
|
||||||
|
// fixes a deadlock in DownloadRunnable because youtube is sending one byte alone after downloading 26MiB exactly
|
||||||
|
while (start <= end && mMission.running && (len = is.read(buf, 0, buf.length)) != -1) {
|
||||||
f.write(buf, 0, len);
|
f.write(buf, 0, len);
|
||||||
start += len;
|
start += len;
|
||||||
block.done += len;
|
block.done += len;
|
||||||
|
|
Loading…
Reference in New Issue