diff --git a/app/src/main/java/com/avnet/gears/codes/gimbal/store/async/response/processor/impl/RecommendationDataProcessor.java b/app/src/main/java/com/avnet/gears/codes/gimbal/store/async/response/processor/impl/RecommendationDataProcessor.java index b5ffa0b..25b8898 100644 --- a/app/src/main/java/com/avnet/gears/codes/gimbal/store/async/response/processor/impl/RecommendationDataProcessor.java +++ b/app/src/main/java/com/avnet/gears/codes/gimbal/store/async/response/processor/impl/RecommendationDataProcessor.java @@ -72,7 +72,7 @@ public boolean doProcess(List responseItemBeansList) { case ASK_REC_PROD: case ASK_REVIEW: case ASKED_TO_REC_PROD: - targetIntent = new Intent(context, ProductsListActivity.class); + targetIntent = new Intent(context, ProductDetailsActivity.class); bundle.putString(GimbalStoreConstants.INTENT_EXTRA_ATTR_KEY.SELECTED_PRODUCT_ID.toString(), identifierString); targetIntent.putExtras(bundle); @@ -84,7 +84,7 @@ public boolean doProcess(List responseItemBeansList) { break; case ASK_REC_CAT: case ASKED_TO_REC_CAT: - targetIntent = new Intent(context, ProductDetailsActivity.class); + targetIntent = new Intent(context, ProductsListActivity.class); bundle.putString(GimbalStoreConstants.INTENT_EXTRA_ATTR_KEY.SELECTED_SUB_CATEGORY_ID.toString(), identifierString); targetIntent.putExtras(bundle);