Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6c5544c authored by Robert Greenwalt's avatar Robert Greenwalt Committed by Android Git Automerger
Browse files

am fe10a506: am 20c811dd: am b1f0bba1: Merge "Change how we use provisioning...

am fe10a506: am 20c811dd: am b1f0bba1: Merge "Change how we use provisioning url so post works" into klp-dev

* commit 'fe10a506':
  Change how we use provisioning url so post works
parents 2e8e2000 fe10a506
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -4434,8 +4434,9 @@ public class ConnectivityService extends IConnectivityManager.Stub {
            mdst.enableMobileProvisioning(url);
        } else {
            if (DBG) log("handleMobileProvisioningAction: on default network");
            Intent newIntent =
                    new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            Intent newIntent = Intent.makeMainSelectorActivity(Intent.ACTION_MAIN,
                    Intent.CATEGORY_APP_BROWSER);
            newIntent.setData(Uri.parse(url));
            newIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT |
                    Intent.FLAG_ACTIVITY_NEW_TASK);
            try {