We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4f220 commit 3580ac4Copy full SHA for 3580ac4
src/database/src/output/waypoint.rs
@@ -53,7 +53,7 @@ impl From<v2::sql_structs::Waypoints> for Waypoint {
53
area_code: waypoint.area_code,
54
airport_ident: waypoint.region_code,
55
// Not entirely sure if this is behaviour we intend
56
- icao_code: waypoint.icao_code.unwrap_or_default(),
+ icao_code: waypoint.icao_code.unwrap_or("UNK".to_string()),
57
ident: waypoint.waypoint_identifier,
58
name: waypoint.waypoint_name,
59
location: Coordinates {
0 commit comments