Fixed a type in NearbyParentFragment.java where significantly was written instead of slightly while adding a log using Timber (#3432)

This commit is contained in:
Aryan Tyagi 2020-02-25 17:26:50 +05:30 committed by GitHub
parent 47155d1f55
commit fffff62f5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -908,7 +908,7 @@ public class NearbyParentFragment extends CommonsDaggerSupportFragment
@Override
public void onLocationChangedSlightly(fr.free.nrw.commons.location.LatLng latLng) {
Timber.d("Location significantly changed");
Timber.d("Location slightly changed");
if (isMapBoxReady && latLng != null &&!isUserBrowsing()) {//If the map has never ever shown the current location, lets do it know
handleLocationUpdate(latLng,LOCATION_SLIGHTLY_CHANGED);
}