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

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

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

Change-Id: I52ae362254044c43ab3262ebd511d646da4861b5
parents f098be99 4579ab30
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);