fix a bug that extra is not actually set to the query.

Bug: 196294479
Test: manually
Change-Id: I765ac6b996880c607aee4ed5e627c1c33bde2b6d
This commit is contained in:
synch
2021-08-12 14:43:22 +08:00
parent ecd6190673
commit 00f00ace62

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