From 5f89ebb6428c2735dec4eb062c6b6d92fdd3fa72 Mon Sep 17 00:00:00 2001 From: velichkomarija Date: Fri, 4 Dec 2020 15:51:11 +0300 Subject: [PATCH] [android] Updated method onAuthorizationRequired in BookmarksCatalogFragment. --- .../mapswithme/maps/bookmarks/BookmarksCatalogFragment.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/android/src/com/mapswithme/maps/bookmarks/BookmarksCatalogFragment.java b/android/src/com/mapswithme/maps/bookmarks/BookmarksCatalogFragment.java index bd4673b5dc..7850ea254a 100644 --- a/android/src/com/mapswithme/maps/bookmarks/BookmarksCatalogFragment.java +++ b/android/src/com/mapswithme/maps/bookmarks/BookmarksCatalogFragment.java @@ -543,8 +543,10 @@ public class BookmarksCatalogFragment extends BaseWebViewMwmFragment @Override public void onAuthorizationRequired() { - mDelegate.authorize(() -> mFailedPurchaseController.validateExistingPurchases()); - loadCatalog(mProductDetailsBundle); + mDelegate.authorize(() -> { + mFailedPurchaseController.validateExistingPurchases(); + loadCatalog(mProductDetailsBundle); + }); } @Override