Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ fun DatedJourneyDto.minimalCopy(): DatedJourneyDto {
directionRef = directionRef,
originStopPointRef = null,
destinationStopPointRef = null,
destinationText = null,
destinationText = destinationText,
vehicleRef = null,
situationFullRefWrapper = null,
unplanned = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ fun LegAlightDto.minimalCopy(): LegAlightDto {
timetabledTime = serviceArrival.timetabledTime,
estimatedTime = serviceArrival.estimatedTime
),
plannedQuay = null,
plannedQuay = plannedQuay,
estimatedQuay = null,
nameSuffix = null,
serviceDeparture = null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ fun LegBoardDto.minimalCopy(): LegBoardDto {
timetabledTime = serviceDeparture.timetabledTime,
estimatedTime = serviceDeparture.estimatedTime
),
plannedQuay = null,
plannedQuay = plannedQuay,
estimatedQuay = null,
nameSuffix = null,
serviceArrival = null,
Expand Down
Loading