Skip to content

Commit

Permalink
android work
Browse files Browse the repository at this point in the history
  • Loading branch information
mcleinman committed Feb 6, 2025
1 parent f7c616b commit ff0c36e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions src/platforms/android/androidcontroller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,13 @@ AndroidController::AndroidController() {
Controller* controller = MozillaVPN::instance()->controller();
controller->startHandshakeTimer();

granted
? mozilla::glean::outcome::onboarding_ntwrk_perm_granted.record()
: mozilla::glean::outcome::onboarding_ntwrk_perm_denied.record();
BOOL isOnboarding =
MozillaVPN::instance()->state() == App::StateOnboarding;
if (isOnboarding) {
granted
? mozilla::glean::outcome::onboarding_ntwrk_perm_granted.record()
: mozilla::glean::outcome::onboarding_ntwrk_perm_denied.record();
}
},
Qt::QueuedConnection);
}
Expand Down

0 comments on commit ff0c36e

Please sign in to comment.