forked from organicmaps/organicmaps
[Android] backurl API fixes (#5322)
This commit is contained in:
parent
90c39c07ce
commit
a3a33938ed
1 changed files with 7 additions and 7 deletions
|
@ -202,13 +202,6 @@ 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))
|
||||
|
@ -218,6 +211,13 @@ 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