Skip to content

Commit 40bda86

Browse files
committed
Fix missing source arrival consecutive time in TrainrunSectionViewObject.generateKey()
Only the source matters for the first section, the target is handled by the last section of the chain. Same as this commit, but for the consecutive time: 9689208 Signed-off-by: Simon Ser <[email protected]>
1 parent 47135e7 commit 40bda86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/view/editor-main-view/data-views/trainrunSectionViewObject.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class TrainrunSectionViewObject {
8484
"_" +
8585
firstSection.getSourceDepartureConsecutiveTime() +
8686
"_" +
87-
firstSection.getTargetArrivalConsecutiveTime() +
87+
firstSection.getSourceArrivalConsecutiveTime() +
8888
"_" +
8989
firstSection.getNumberOfStops() +
9090
"_" +

0 commit comments

Comments
 (0)