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

Commit 6490e4d5 authored by Julia Tuttle's avatar Julia Tuttle Committed by Android (Google) Code Review
Browse files

Merge "Fix NPE in RemoteInput.getResultsFromIntent" into main

parents 23b60318 1885bdac
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -429,7 +429,7 @@ public final class RemoteInput implements Parcelable {
        if (clipDataIntent == null) {
            return null;
        }
        return clipDataIntent.getExtras().getParcelable(EXTRA_RESULTS_DATA, android.os.Bundle.class);
        return clipDataIntent.getParcelableExtra(EXTRA_RESULTS_DATA, android.os.Bundle.class);
    }

    /**