Skip to content

Commit

Permalink
Add Build2015Format fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
kria committed Feb 21, 2016
1 parent 70f2670 commit d595685
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class Build2015CompletionNotification : BuildCompletionNotification
{
protected override string GetBuildFormat(BotElement bot)
{
return bot.Text.Build2015Format;
return string.IsNullOrEmpty(bot.Text.Build2015Format) ? bot.Text.BuildFormat : bot.Text.Build2015Format;
}
}
}

0 comments on commit d595685

Please sign in to comment.