Reset attachment download on all errors

pull/156/head
M66B 5 years ago
parent db931c6f6f
commit fb575b3a53

@ -926,8 +926,10 @@ public class MessageHelper {
Log.i("Downloaded attachment size=" + size);
} catch (FolderClosedIOException ex) {
db.attachment().setError(id, Helper.formatThrowable(ex));
throw new FolderClosedException(ex.getFolder(), "downloadAttachment", ex);
} catch (MessageRemovedIOException ex) {
db.attachment().setError(id, Helper.formatThrowable(ex));
throw new MessagingException("downloadAttachment", ex);
} catch (Throwable ex) {
// Reset progress on failure

Loading…
Cancel
Save