mirror of
https://github.com/moparisthebest/davmail
synced 2025-01-05 10:47:59 -05:00
EWS: make isMainCalendar case insensitive
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1943 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
104f64f86e
commit
0d7a1bba1d
@ -1899,7 +1899,7 @@ public class EwsExchangeSession extends ExchangeSession {
|
||||
|
||||
@Override
|
||||
public boolean isMainCalendar(String folderPath) {
|
||||
return "calendar".equals(folderPath) || (currentMailboxPath + "/calendar").equals(folderPath);
|
||||
return "calendar".equalsIgnoreCase(folderPath) || (currentMailboxPath + "/calendar").equalsIgnoreCase(folderPath);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user