diff options
| -rw-r--r-- | core/java/android/app/RemoteInput.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/RemoteInput.java b/core/java/android/app/RemoteInput.java index 88161091b6ea..145efa961bcb 100644 --- a/core/java/android/app/RemoteInput.java +++ b/core/java/android/app/RemoteInput.java @@ -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); } /** |