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

Commit ce285267 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fix VerificationActivity Intent" am: b2d41e93 am: 4579ab30 am: b4135529

Change-Id: Iab05236faca240776acedba62ca3071e8ad20f6e
parents cb7d86d8 b4135529
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -84,7 +84,6 @@ public class VerificationActivity extends Activity {
        // retrieve data from calling intent
        Intent callingIntent = getIntent();
        Uri url = callingIntent.getData();
        Bundle extras = callingIntent.getExtras();

        if (url != null) {
            sVerifiedUrl = url.toString();
@@ -96,7 +95,7 @@ public class VerificationActivity extends Activity {
            intent.setData(url);
        }
        intent.setAction(DynamicSystemClient.ACTION_START_INSTALL);
        intent.putExtras(extras);
        intent.putExtras(callingIntent);

        Log.d(TAG, "Starting Installation Service");
        startServiceAsUser(intent, UserHandle.SYSTEM);