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

Commit 00f00ace authored by synch's avatar synch
Browse files

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

Bug: 196294479
Test: manually
Change-Id: I765ac6b996880c607aee4ed5e627c1c33bde2b6d
parent ecd61906
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();
    }

    /**