[Android] backurl API fixes (#5322)

This commit is contained in:
Black Box Embedded, LLC 2023-06-15 02:05:59 -06:00 committed by GitHub
parent 90c39c07ce
commit a3a33938ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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