Skip to content

Commit

Permalink
Merge pull request #2878 from tequillaz/rss_feed_name
Browse files Browse the repository at this point in the history
[JENKINS-44117] - use getFullDisplayName for RSS feed name
  • Loading branch information
oleg-nenashev committed May 10, 2017
2 parents 2f5ca1a + 26dc905 commit 604fc96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/Run.java
Expand Up @@ -2422,7 +2422,7 @@ public final class KeepLogBuildBadge implements BuildBadgeAction {

private static class DefaultFeedAdapter implements FeedAdapter<Run> {
public String getEntryTitle(Run entry) {
return entry.getDisplayName()+" ("+entry.getBuildStatusSummary().message+")";
return entry.getFullDisplayName()+" ("+entry.getBuildStatusSummary().message+")";
}

public String getEntryUrl(Run entry) {
Expand Down

0 comments on commit 604fc96

Please sign in to comment.