Navigation Menu

Skip to content

Commit

Permalink
fix(duration-display): Fix for duration label error
Browse files Browse the repository at this point in the history
  • Loading branch information
hypery2k committed Sep 17, 2017
1 parent 5bad3e8 commit 28c8594
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -149,7 +149,7 @@ MessageBuilder appendDuration() {
if (message.toString().contains(BACK_TO_NORMAL_STATUS_MESSAGE)) {
durationString = createBackToNormalDurationString();
} else {
durationString = Util.getTimeSpanString(build.getDuration());
durationString = build.getDurationString().replace("and counting", "");
}
message.append(durationString);
return this;
Expand Down

0 comments on commit 28c8594

Please sign in to comment.