Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
Jenkins ver. 1.499
git plugin: 1.1.26
Description
When checking for an existing email address for a user the proper getAdress() method is not being used:
GitChangeSet.java, Line 274
if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class)==null)
should look like:
if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class).getAddress())
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
When checking for an existing email address for a user the proper getAdress() method is not being used: {code:title=GitChangeSet.java, Line 274|borderStyle=solid} if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class)==null) {code} should look like: {code:java if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class).getAddress()) {code} |
When checking for an existing email address for a user the proper getAdress() method is not being used: {code:title=GitChangeSet.java, Line 274|borderStyle=solid} if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class)==null) {code} should look like: {code:java} if (fixEmpty(csAuthorEmail) != null && user.getProperty(Mailer.UserProperty.class).getAddress()) {code} |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Resolved [ 5 ] |
Workflow | JNJira [ 147275 ] | JNJira + In-Review [ 192313 ] |
Status | Resolved [ 5 ] | Closed [ 6 ] |