Fix loss of client updates in IMAP when no connectivity
Bug: 5014965 Change-Id: Id5c6696ea1add598f180e739398ab14f60e382a3
This commit is contained in:
parent
89010fe39f
commit
53dddf3c55
@ -193,6 +193,10 @@ class ImapFolder extends Folder {
|
||||
return true;
|
||||
|
||||
} catch (MessagingException me) {
|
||||
// Treat IOERROR messaging exception as IOException
|
||||
if (me.getExceptionType() == MessagingException.IOERROR) {
|
||||
throw me;
|
||||
}
|
||||
return false;
|
||||
|
||||
} catch (IOException ioe) {
|
||||
|
Loading…
Reference in New Issue
Block a user