Skip to content

Commit

Permalink
Fixed constructor of SlackJobProperty (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
krisnik authored and timja committed Jan 10, 2019
1 parent 8258946 commit 01df3ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/jenkins/plugins/slack/SlackNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -704,10 +704,10 @@ public SlackJobProperty(String teamDomain,
this.includeCustomMessage = includeCustomMessage;
this.customMessage = customMessage;
this.customMessageSuccess = customMessageSuccess;
this.customMessageFailure = customMessageAborted;
this.customMessageSuccess = customMessageNotBuilt;
this.customMessageFailure = customMessageUnstable;
this.customMessageSuccess = customMessageRegression;
this.customMessageAborted = customMessageAborted;
this.customMessageNotBuilt = customMessageNotBuilt;
this.customMessageUnstable = customMessageUnstable;
this.customMessageRegression = customMessageRegression;
this.customMessageFailure = customMessageFailure;
}

Expand Down

0 comments on commit 01df3ad

Please sign in to comment.