handle empty names in summaries

This commit is contained in:
karenzshea
2016-09-28 17:41:34 -04:00
committed by Moritz Kobitzsch
parent b033ac9f0b
commit 12238ebb52
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(';');
}
};