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.
2 parents 2a80b7f + 3036a33 commit d45ff21Copy full SHA for d45ff21
app/src/main/java/fr/free/nrw/commons/media/MediaDetailFragment.java
@@ -384,7 +384,7 @@ private void openWebBrowser(String url) {
384
private void openMap(LatLng coordinates) {
385
//Open map app at given position
386
Uri gmmIntentUri = Uri.parse(
387
- "geo:0,0?q=" + coordinates.getLatitude() + "," + coordinates.getLatitude());
+ "geo:0,0?q=" + coordinates.getLatitude() + "," + coordinates.getLongitude());
388
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
389
390
if (mapIntent.resolveActivity(getActivity().getPackageManager()) != null) {
0 commit comments