ICQ: Remove 8 character password truncation. (This is apparently outdated since 2006?!?)

smack4 5471
Danny van Heumen 11 years ago
parent 5d1032133b
commit 662fcc824c

@ -323,12 +323,6 @@ private void connectAndLogin(SecurityAuthority authority, int reasonCode)
}
}
// it seems icq servers doesn't accept password with
// length more then 8. But allow such registrations
// we must trim such passwords to 8 characters
if(USING_ICQ && password.length() > 8)
password = password.substring(0, 8);
//init the necessary objects
session = new DefaultAppSession();
aimSession = session.openAimSession(

Loading…
Cancel
Save