Commit 4bd6caa3 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

[GATE-157] Added ability to have yahoo usernames with .'s in them.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@7348 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7b762e3b
......@@ -69,7 +69,7 @@ public class YahooTransport extends BaseTransport {
* @see org.jivesoftware.wildfire.gateway.BaseTransport#isUsernameValid(String)
*/
public Boolean isUsernameValid(String username) {
return username.matches("\\w+");
return username.matches("[\\w\\.]+");
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment