mirror of
https://github.com/moparisthebest/davmail
synced 2024-11-15 13:55:09 -05:00
IMAP: fix LIST "" "" answer (StringIndexOutOfBoundsException)
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@371 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
6c067d47c7
commit
a76513ec59
@ -703,7 +703,11 @@ public class ExchangeSession {
|
|||||||
} else {
|
} else {
|
||||||
int index = href.indexOf(mailPath.substring(0, mailPath.length() - 1));
|
int index = href.indexOf(mailPath.substring(0, mailPath.length() - 1));
|
||||||
if (index >= 0) {
|
if (index >= 0) {
|
||||||
|
if (index + mailPath.length()>href.length()) {
|
||||||
|
folder.folderUrl= "";
|
||||||
|
} else {
|
||||||
folder.folderUrl = href.substring(index + mailPath.length());
|
folder.folderUrl = href.substring(index + mailPath.length());
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new URIException("Invalid folder url: " + folder.folderUrl);
|
throw new URIException("Invalid folder url: " + folder.folderUrl);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user