Skip to content

Commit b4a5fda

Browse files
authored
Fix city lat/lon bug (#347)
Fixes the bug where cities would have the same value for the latitude and the longitude. Signed-off-by: Rémy Greinhofer <[email protected]>
1 parent 02eec19 commit b4a5fda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambdas/src/core/resource/schema.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ impl From<entity::city::Model> for City {
109109
state: value.state,
110110
name: value.name,
111111
latitude: value.latitude,
112-
longitude: value.latitude,
112+
longitude: value.longitude,
113113
region: value.region,
114114
state_abbrev: value.state_abbrev,
115115
residential_speed_limit: value.residential_speed_limit,

0 commit comments

Comments
 (0)