Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fixed a type in NearbyParentFragment.java where significantly was wri…
…tten instead of slightly while adding a log using Timber
  • Loading branch information
glitch101 committed Feb 24, 2020
commit 7437468ffd7e2914272a004c14440a08c5748c42
Original file line number Diff line number Diff line change
Expand Up @@ -908,7 +908,7 @@ public void onLocationChangedSignificantly(fr.free.nrw.commons.location.LatLng l

@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);
}
Expand Down