handle empty names in summaries

This commit is contained in:
karenzshea
2016-09-28 17:41:34 -04:00
committed by Moritz Kobitzsch
parent 54aaf574d9
commit cbb96ce7f4
3 changed files with 41 additions and 11 deletions
+1 -1
View File
@@ -132,7 +132,7 @@ module.exports = function () {
this.summary = (instructions) => {
if (instructions) {
return instructions.legs.map(l => l.summary).join(',');
return instructions.legs.map(l => l.summary).join(';');
}
};