Skip to content

Commit

Permalink
Fix nullability warning in CalendarEntityDisplayModel (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
axunonb authored Sep 17, 2024
1 parent 7d45c19 commit d1a628b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ public string GetRouteGoogleMapsLink()
return string.Format("https://maps.google.de/maps?saddr={0},{1}&daddr={2},{3}",
_userLocation.Latitude!.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture),
_userLocation.Longitude!.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture),
Latitude.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture),
Longitude.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture));
Latitude!.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture),
Longitude!.Value.ToString(LatLonFormat, CultureInfo.InvariantCulture));
}

public bool IsGeoSpatial()
Expand Down

0 comments on commit d1a628b

Please sign in to comment.