forked from organicmaps/organicmaps
Revert "[Android] backurl API fixes (#5322)"
This reverts commit a3a33938ed
.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
fed0ed7690
commit
e9966899b7
1 changed files with 7 additions and 7 deletions
|
@ -202,6 +202,13 @@ public class Factory
|
|||
{
|
||||
final ParsingResult result = Framework.nativeParseAndSetApiUrl(getUrl());
|
||||
|
||||
// TODO: Kernel recognizes "mapsme://", "mwm://" and "mapswithme://" schemas only!!!
|
||||
if (result.getUrlType() == ParsingResult.TYPE_INCORRECT)
|
||||
return Map.showMapForUrl(getUrl());
|
||||
|
||||
if (!result.isSuccess())
|
||||
return false;
|
||||
|
||||
final Uri uri = Uri.parse(getUrl());
|
||||
final String backUrl = uri.getQueryParameter("backurl");
|
||||
if (!TextUtils.isEmpty(backUrl))
|
||||
|
@ -211,13 +218,6 @@ public class Factory
|
|||
intent.putExtra(MwmActivity.EXTRA_BACK_URL, backUrl);
|
||||
}
|
||||
|
||||
// Kernel recognizes "om://", "mapsme://", "mwm://" and "mapswithme://" schemes only!!!
|
||||
if (result.getUrlType() == ParsingResult.TYPE_INCORRECT)
|
||||
return Map.showMapForUrl(getUrl());
|
||||
|
||||
if (!result.isSuccess())
|
||||
return false;
|
||||
|
||||
switch (result.getUrlType())
|
||||
{
|
||||
case ParsingResult.TYPE_INCORRECT:
|
||||
|
|
Loading…
Add table
Reference in a new issue