diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2020-02-21 05:51:24 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2020-02-21 05:51:24 +0000 |
commit | b2d41e93f80166ccf9631af776d8df2a2a30b34d (patch) | |
tree | 31f79234c361190e17c503a816de49c0498ef51e /packages/DynamicSystemInstallationService | |
parent | 458a9a2561f0e5fc341892ac0c52e771f094edac (diff) | |
parent | f8d67892332a535338cfd415340a83b31b373ee5 (diff) |
Merge "Fix VerificationActivity Intent"
Diffstat (limited to 'packages/DynamicSystemInstallationService')
-rw-r--r-- | packages/DynamicSystemInstallationService/src/com/android/dynsystem/VerificationActivity.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/DynamicSystemInstallationService/src/com/android/dynsystem/VerificationActivity.java b/packages/DynamicSystemInstallationService/src/com/android/dynsystem/VerificationActivity.java index e42ded74acd0..82ea7449bf6d 100644 --- a/packages/DynamicSystemInstallationService/src/com/android/dynsystem/VerificationActivity.java +++ b/packages/DynamicSystemInstallationService/src/com/android/dynsystem/VerificationActivity.java @@ -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); |