Skip to content

Commit

Permalink
Added recommendations response on notifications click
Browse files Browse the repository at this point in the history
  • Loading branch information
rajagopal28 committed Mar 21, 2015
1 parent 5e4ee73 commit 52e546a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public boolean doProcess(List<ResponseItemBean> 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);
Expand All @@ -84,7 +84,7 @@ public boolean doProcess(List<ResponseItemBean> 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);
Expand Down

0 comments on commit 52e546a

Please sign in to comment.