Skip to content

Commit

Permalink
Use project's full display name in notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
aldaris committed Feb 22, 2015
1 parent d264aff commit bf0d30c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static String getStatusMessageWithChanges(AbstractBuild<?, ?> build) {
public final String getMessage(AbstractBuild<?, ?> build) {
String rootUrl = Jenkins.getInstance().getRootUrl();
StringBuilder sb = new StringBuilder(150);
sb.append(Messages.MessageStart(build.getProject().getDisplayName(), build.getDisplayName()));
sb.append(Messages.MessageStart(build.getProject().getFullDisplayName(), build.getDisplayName()));
sb.append(' ');
sb.append(getStatusMessage(build));

Expand Down

0 comments on commit bf0d30c

Please sign in to comment.