mirror of
https://github.com/moparisthebest/davmail
synced 2024-12-14 19:52:21 -05:00
remove username duplicate check, as formLogin now resets values before POST
git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@816 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
parent
70039c8cb0
commit
46db035ddd
@ -361,9 +361,7 @@ public class ExchangeSession {
|
|||||||
String type = ((TagNode) input).getAttributeByName("type");
|
String type = ((TagNode) input).getAttributeByName("type");
|
||||||
String name = ((TagNode) input).getAttributeByName("name");
|
String name = ((TagNode) input).getAttributeByName("name");
|
||||||
String value = ((TagNode) input).getAttributeByName("value");
|
String value = ((TagNode) input).getAttributeByName("value");
|
||||||
if ("hidden".equalsIgnoreCase(type) && name != null && value != null
|
if ("hidden".equalsIgnoreCase(type) && name != null && value != null) {
|
||||||
// found a server with a username hidden field
|
|
||||||
&& !"username".equals(name)) {
|
|
||||||
logonMethod.addParameter(name, value);
|
logonMethod.addParameter(name, value);
|
||||||
}
|
}
|
||||||
// custom login form
|
// custom login form
|
||||||
|
Loading…
Reference in New Issue
Block a user