Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0992e4e authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Android (Google) Code Review
Browse files

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

parents ad28fe0e 00f00ace
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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();
    }

    /**