summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Shashwat Razdan <srazdan@google.com> 2021-02-16 13:36:39 -0800
committer Shashwat Razdan <srazdan@google.com> 2021-02-16 23:32:23 +0000
commit70e0b0cb354679d24f1587cbfec97e45085ece2c (patch)
tree6eb914a0dc47a83223371909ff237d49167c4c68
parent66d8f10f6e3dd5bbf6c29def4c0a0d22313c99ae (diff)
Addressing a bug in parcelization of SmartspaceAction's bundle.
Bug: 176851064 Test: Manual Change-Id: I22df17f6c521aabc41f65507225431db1d27c9fa
-rw-r--r--core/java/android/app/smartspace/SmartspaceAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/smartspace/SmartspaceAction.java b/core/java/android/app/smartspace/SmartspaceAction.java
index 439d851acea6..f17b044f7996 100644
--- a/core/java/android/app/smartspace/SmartspaceAction.java
+++ b/core/java/android/app/smartspace/SmartspaceAction.java
@@ -89,7 +89,7 @@ public final class SmartspaceAction implements Parcelable {
mPendingIntent = in.readTypedObject(PendingIntent.CREATOR);
mIntent = in.readTypedObject(Intent.CREATOR);
mUserHandle = in.readTypedObject(UserHandle.CREATOR);
- mExtras = in.readTypedObject(Bundle.CREATOR);
+ mExtras = in.readBundle();
}
private SmartspaceAction(