fs: also make downloading next part async

This commit is contained in:
j 2015-04-03 11:31:21 +02:00
parent 12adaf062a
commit 14bc488420

View file

@ -54,7 +54,9 @@ pandora.fs = (function() {
});
}
} else {
downloadPart(part + 1);
setTimeout(function() {
downloadPart(part + 1);
});
}
}
callback && callback(result);