diff --git a/play-services-maps/core/mapbox/src/main/kotlin/org/microg/gms/maps/mapbox/LiteGoogleMap.kt b/play-services-maps/core/mapbox/src/main/kotlin/org/microg/gms/maps/mapbox/LiteGoogleMap.kt index 65d84eb537..f4395633c6 100644 --- a/play-services-maps/core/mapbox/src/main/kotlin/org/microg/gms/maps/mapbox/LiteGoogleMap.kt +++ b/play-services-maps/core/mapbox/src/main/kotlin/org/microg/gms/maps/mapbox/LiteGoogleMap.kt @@ -365,7 +365,7 @@ class LiteGoogleMapImpl(context: Context, var options: GoogleMapOptions) : Abstr } fun getMapAsync(callback: IOnMapReadyCallback) { - if (lastSnapshot == null) { + if (lastSnapshot != null) { Log.d(TAG, "Invoking callback instantly, as a snapshot is ready") callback.onMapReady(this) } else {