Skip to content

Commit

Permalink
[JENKINS-34324] Fix PCT against 2.0-rc-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Rodriguez committed Apr 19, 2016
1 parent 97f8508 commit 91df7cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.3</version>
<version>2.7</version>
</parent>

<artifactId>mailer</artifactId>
Expand Down
Expand Up @@ -85,7 +85,7 @@ public MimeMessageBuilder() {
JenkinsLocationConfiguration jlc = JenkinsLocationConfiguration.get();
if (jlc != null) {
defaultSuffix = Mailer.descriptor().getDefaultSuffix();
from = JenkinsLocationConfiguration.get().getAdminAddress();
from = jlc.getAdminAddress();
final String rto = Mailer.descriptor().getReplyToAddress();
try {
replyTo.addAll(toNormalizedAddresses(rto));
Expand Down

0 comments on commit 91df7cc

Please sign in to comment.