Skip to content

Commit

Permalink
Merge pull request #5 from meonkeys/master
Browse files Browse the repository at this point in the history
[FIXED JENKINS-11443] - E-mail address as Jabber ID config setting.
  • Loading branch information
kutzi committed Oct 23, 2011
2 parents 5958a1f + e88e473 commit 3e3f929
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ protected String getPluginName() {
protected String getConfiguredIMId(User user) {
// if set, user property override all other settings:
JabberUserProperty jabberUserProperty = (JabberUserProperty) user.getProperties().get(JabberUserProperty.DESCRIPTOR);
if (jabberUserProperty != null) {
if (jabberUserProperty != null && jabberUserProperty.getJid() != null) {
return jabberUserProperty.getJid();
}

Expand Down

0 comments on commit 3e3f929

Please sign in to comment.