Merge "fix a bug that extra is not actually set to the query." into sc-qpr1-dev

This commit is contained in:
Hyunyoung Song
2021-09-03 03:28:43 +00:00
committed by Android (Google) Code Review

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();
}
/**