Merge "fix a bug that extra is not actually set to the query." into sc-qpr1-dev am: c0992e4ec4 am: b92a3cfce8 am: 5e82458982

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15537322

Change-Id: I30674020def53126838918117539c98459045a85
This commit is contained in:
Hyunyoung Song
2021-09-03 04:21:11 +00:00
committed by Automerger Merge Worker

View File

@@ -70,7 +70,7 @@ public final class Query implements Parcelable {
@NonNull Bundle extras) {
mInput = input;
mTimestampMillis = timestampMillis;
mExtras = extras == null ? extras : new Bundle();
mExtras = extras != null ? extras : new Bundle();
}
/**