[android] Fixed selection of correct subscription monthly price on bookmark single purchase screen

This commit is contained in:
Александр Зацепин 2020-03-23 13:00:11 +03:00 committed by Vladimir Byko-Ianko
parent b73da24e1f
commit e5bb0d744b

View file

@ -192,8 +192,9 @@ public class BookmarkPaymentFragment extends BaseMwmFragment
activateState(BookmarkPaymentState.PRODUCT_DETAILS_LOADING);
mPurchaseController.queryProductDetails();
SubscriptionType type = SubscriptionType.getTypeByBookmarksGroup(mPaymentData.getGroup());
List<String> subsProductIds =
Collections.singletonList(PrivateVariables.bookmarksSubscriptionMonthlyProductId());
Collections.singletonList(type.getMonthlyProductId());
mSubsProductDetailsLoadingManager.queryProductDetails(subsProductIds);
}