Skip to content

Commit

Permalink
Merge pull request #863 from hove-io/add_comment_on_stoploc_reading
Browse files Browse the repository at this point in the history
Add comment on GTFS/NTFS stoplocation reading
  • Loading branch information
ArnaudOggy committed Oct 12, 2022
2 parents 1869ed6 + 2240261 commit df4dd01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gtfs/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ impl TryFrom<Stop> for objects::StopLocation {
name: stop.name,
code: stop.code,
comment_links: CommentLinksT::default(),
visible: false,
visible: false, // disable for autocomplete
coord,
parent_id: stop.parent_station,
timezone: stop.timezone,
Expand Down
2 changes: 1 addition & 1 deletion src/ntfs/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl TryFrom<Stop> for StopLocation {
name: stop.name,
code: stop.code,
comment_links: CommentLinksT::default(),
visible: false,
visible: false, // disable for autocomplete
coord,
parent_id: stop.parent_station,
timezone: stop.timezone,
Expand Down

0 comments on commit df4dd01

Please sign in to comment.