throw writeexecption in downloader if flush fails

This commit is contained in:
Daniel Gultsch 2016-06-03 14:27:05 +02:00
parent e402348f9b
commit 161fdf7340
1 changed files with 5 additions and 7 deletions

View File

@ -304,16 +304,14 @@ public class HttpDownloadConnection implements Transferable {
throw new CancellationException();
}
}
try {
os.flush();
} catch (IOException e) {
throw new WriteException();
}
} catch (CancellationException | IOException e) {
throw e;
} finally {
if (os != null) {
try {
os.flush();
} catch (final IOException ignored) {
}
}
FileBackend.close(os);
FileBackend.close(is);
wakeLock.release();