[android] Changed parameter name in subscription deeplink

This commit is contained in:
Александр Зацепин 2019-11-27 16:11:08 +03:00 committed by Arsentiy Milchakov
parent 21d97a608a
commit 9d78338ab9
3 changed files with 5 additions and 4 deletions

View file

@ -32,6 +32,7 @@ import com.mapswithme.maps.location.LocationHelper;
import com.mapswithme.maps.onboarding.IntroductionScreenFactory;
import com.mapswithme.maps.purchase.BookmarksAllSubscriptionActivity;
import com.mapswithme.maps.purchase.BookmarksSightsSubscriptionActivity;
import com.mapswithme.maps.purchase.PurchaseUtils;
import com.mapswithme.maps.purchase.SubscriptionType;
import com.mapswithme.maps.routing.RoutingController;
import com.mapswithme.maps.search.SearchActivity;
@ -733,7 +734,7 @@ public class Factory
public boolean run(@NonNull MwmActivity target)
{
Uri uri = Uri.parse(mUrl);
String serverId = uri.getQueryParameter("deliverable");
String serverId = uri.getQueryParameter(PurchaseUtils.GROUPS);
if (TextUtils.isEmpty(serverId))
return false;

View file

@ -20,7 +20,6 @@ public class BookmarkPaymentDataParser implements PaymentDataParser
public final static String NAME = "name";
public final static String IMG_URL = "img";
public final static String AUTHOR_NAME = "author_name";
public final static String GROUPS = "groups";
@NonNull
@Override

View file

@ -22,6 +22,7 @@ import java.util.List;
public class PurchaseUtils
{
public final static String GROUPS = "groups";
final static int REQ_CODE_PRODUCT_DETAILS_FAILURE = 1;
final static int REQ_CODE_PAYMENT_FAILURE = 2;
final static int REQ_CODE_VALIDATION_SERVER_ERROR = 3;
@ -183,11 +184,11 @@ public class PurchaseUtils
@NonNull
public static String getTargetBookmarkGroupFromUri(@NonNull Uri uri)
{
List<String> uriGroups = uri.getQueryParameters(BookmarkPaymentDataParser.GROUPS);
List<String> uriGroups = uri.getQueryParameters(GROUPS);
if (uriGroups == null || uriGroups.isEmpty())
{
CrashlyticsUtils.logException(
new IllegalArgumentException("'" + BookmarkPaymentDataParser.GROUPS
new IllegalArgumentException("'" + GROUPS
+ "' parameter is required! URI: " + uri));
return SubscriptionType.BOOKMARKS_ALL.getServerId();
}