Catches all errors

This commit is contained in:
stom79 2017-11-14 15:13:29 +01:00
parent 1903fc14d5
commit 6c77c653f7
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class PatchBaseImageDownloader extends BaseImageDownloader {
} }
try { try {
return new ContentLengthInputStream(new BufferedInputStream(conn.getInputStream(), BUFFER_SIZE), conn.getContentLength()); return new ContentLengthInputStream(new BufferedInputStream(conn.getInputStream(), BUFFER_SIZE), conn.getContentLength());
}catch (FileNotFoundException e){ }catch (Exception e){
return null; return null;
} }