Revert "[Android] backurl API fixes (#5322)"

This reverts commit a3a33938ed.

Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
Viktor Govako 2023-07-13 06:50:40 -03:00 committed by Alexander Borsuk
parent fed0ed7690
commit e9966899b7

View file

@ -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: