Update MapActivity.java
This commit is contained in:
parent
842cd7a1cb
commit
1a4a686387
1 changed files with 1 additions and 1 deletions
|
@ -842,7 +842,7 @@ public class MapActivity extends AccessibleActivity {
|
|||
Intent intent = getIntent();
|
||||
if (intent != null && intent.getData() != null) {
|
||||
Uri data = intent.getData();
|
||||
if ("http".equalsIgnoreCase(data.getScheme()) && data.getHost() != null && data.getHost().contains("osmand.net")
|
||||
if ("http".equalsIgnoreCase(data.getScheme()) && data.getHost() != null && data.getHost().contains("osmand.net") &&
|
||||
data.getPath() != null && data.getPath().startsWith("/go")) {
|
||||
String lat = data.getQueryParameter("lat");
|
||||
String lon = data.getQueryParameter("lon");
|
||||
|
|
Loading…
Reference in a new issue