mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
59bf3b75c7
https://review.lineageos.org/c/LineageOS/android_frameworks_base/+/353117 https://review.lineageos.org/q/topic:Q_asb_2023-03 https://review.lineageos.org/q/topic:Q_asb_2023-04 https://review.lineageos.org/q/topic:Q_asb_2023-05 https://review.lineageos.org/q/topic:Q_asb_2023-06 https://review.lineageos.org/q/topic:Q_asb_2023-07 https://review.lineageos.org/q/topic:Q_asb_2023-08 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376560 https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376561 https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376562 https://review.lineageos.org/q/topic:Q_asb_2023-09 https://review.lineageos.org/q/topic:Q_asb_2023-10 https://review.lineageos.org/q/topic:Q_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/376563 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_webp/+/376568 https://review.lineageos.org/q/topic:Q_asb_2023-12 https://review.lineageos.org/q/topic:Q_asb_2024-01 https://review.lineageos.org/q/topic:Q_asb_2024-02 https://review.lineageos.org/q/topic:Q_asb_2024-03 Signed-off-by: Tavi <tavi@divested.dev>
29 lines
1.5 KiB
Diff
29 lines
1.5 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Dmitry Dementyev <dementyev@google.com>
|
|
Date: Tue, 7 Mar 2023 10:59:38 -0800
|
|
Subject: [PATCH] Convert argument to Intent in car settings
|
|
AddAccountActivity.
|
|
|
|
Bug: 265798353
|
|
Test: manual
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:3195c559667939b458445b7e133fb4a7c76aaead)
|
|
Merged-In: I4b035fd370197b7f4838af5fb6e4d0ce27a5f3e7
|
|
Change-Id: I4b035fd370197b7f4838af5fb6e4d0ce27a5f3e7
|
|
---
|
|
src/com/android/car/settings/accounts/AddAccountActivity.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/com/android/car/settings/accounts/AddAccountActivity.java b/src/com/android/car/settings/accounts/AddAccountActivity.java
|
|
index d5ce57142..69ada037f 100644
|
|
--- a/src/com/android/car/settings/accounts/AddAccountActivity.java
|
|
+++ b/src/com/android/car/settings/accounts/AddAccountActivity.java
|
|
@@ -94,7 +94,7 @@ public class AddAccountActivity extends Activity {
|
|
intent.putExtras(addAccountOptions);
|
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
|
startActivityForResultAsUser(
|
|
- intent, ADD_ACCOUNT_REQUEST, mUserHandle);
|
|
+ new Intent(intent), ADD_ACCOUNT_REQUEST, mUserHandle);
|
|
LOG.v("account added: " + result);
|
|
} catch (OperationCanceledException | IOException | AuthenticatorException e) {
|
|
LOG.v("addAccount error: " + e);
|