Skip to content

Commit

Permalink
fix : Update consent method implementation (#477)
Browse files Browse the repository at this point in the history
The consent implementation for kits was not returning the current consent
  • Loading branch information
Mansi-mParticle authored Apr 10, 2024
1 parent 9b5068e commit c3be9f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,12 @@ public boolean setUserTag(String tag) {

@Override
public ConsentState getConsentState() {
return null;
return mpUser.getConsentState();
}

@Override
public void setConsentState(ConsentState state) {

mpUser.setConsentState(state);
}

@Override
Expand Down

0 comments on commit c3be9f7

Please sign in to comment.