Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
a-maurice committed Dec 14, 2023
1 parent 976240a commit 043f2be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytics/src/analytics_android.cc
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ void SetConsent(const std::map<ConsentType, ConsentStatus>& consent_settings) {
consent_type =
env->GetStaticObjectField(analytics_consent_type::GetClass(),
analytics_consent_type::GetFieldId(
analytics_consent_type::AdUserData));
analytics_consent_type::kAdUserData));

if (util::LogException(env, kLogLevelError,
"Failed to get ConsentTypeAdUserData")) {
Expand All @@ -245,7 +245,7 @@ void SetConsent(const std::map<ConsentType, ConsentStatus>& consent_settings) {
consent_type = env->GetStaticObjectField(
analytics_consent_type::GetClass(),
analytics_consent_type::GetFieldId(
analytics_consent_type::AdPersonalization));
analytics_consent_type::kAdPersonalization));

if (util::LogException(env, kLogLevelError,
"Failed to get ConsentTypeAdPersonalization")) {
Expand Down

0 comments on commit 043f2be

Please sign in to comment.