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

Commit b2d41e93 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix VerificationActivity Intent"

parents 458a9a25 f8d67892
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);