Commit b3b77f22 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/src/plugins/gateway@7348 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4904ca18
...@@ -69,7 +69,7 @@ public class YahooTransport extends BaseTransport { ...@@ -69,7 +69,7 @@ public class YahooTransport extends BaseTransport {
* @see org.jivesoftware.wildfire.gateway.BaseTransport#isUsernameValid(String) * @see org.jivesoftware.wildfire.gateway.BaseTransport#isUsernameValid(String)
*/ */
public Boolean isUsernameValid(String username) { 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