Skip to content

Commit

Permalink
Fix operator detection introduced by
Browse files Browse the repository at this point in the history
  • Loading branch information
miklcct committed Sep 13, 2024
1 parent 72e1f24 commit 56e8d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gtfs/repository/ScheduleBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export class ScheduleBuilder {
}
),
mode,
agencies.some((a) => a.agency_id === row.atoc_code) ? row.atoc_code : "ZZ",
agencies.some((a) => a.agency_id === `=${row.atoc_code}`) ? row.atoc_code : "ZZ",
row.stp_indicator,
mode === RouteType.Rail && row.train_class !== "S",
row.reservations !== null
Expand Down

0 comments on commit 56e8d7f

Please sign in to comment.