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

Commit 5e824589 authored by Hyunyoung Song's avatar Hyunyoung Song Committed by Automerger Merge Worker
Browse files

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

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

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

Change-Id: I260a6247b54d4f4e415bfb57c0eb968b8b47c57d
parents bc5f68c4 b92a3cfc
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();
    }

    /**