1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-08-13 16:53:51 -04:00

EWS: fix regression in comment

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1591 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-01-04 20:40:34 +00:00
parent 312e860048
commit 10f82dc08d

View File

@ -159,7 +159,7 @@ public class EwsExchangeSession extends ExchangeSession {
email = userName;
alias = userName.substring(0, userName.indexOf('@'));
} else {
// userName or domain\username, rebuild email address
// userName or domain\\username, rebuild email address
alias = getAliasFromLogin();
String domain = httpClient.getHostConfiguration().getHost();
int start = domain.lastIndexOf('.', domain.lastIndexOf('.') - 1);