diff options
| author | 2014-12-02 22:31:06 +0000 | |
|---|---|---|
| committer | 2014-12-02 22:31:09 +0000 | |
| commit | acd01ff07668a608cb4890a2ea1533a2397149c8 (patch) | |
| tree | 0c43b7d0c040ea61a27efc124b37c846db1e430f | |
| parent | 71c5d62d9680207c4d3d25ac3f590f3667b250eb (diff) | |
| parent | 6ae0b1b212ac02dff4297225f9a5c07736af6524 (diff) | |
Merge "Keep deleteIntent when copying Notification attributes"
| -rw-r--r-- | core/java/android/app/Notification.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index fb10e17adb00..a3635038e60b 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1646,6 +1646,7 @@ public class Notification implements Parcelable builder.setSound(this.sound, this.audioStreamType); builder.setDefaults(this.defaults); builder.setVibrate(this.vibrate); + builder.setDeleteIntent(this.deleteIntent); // now apply the latestEventInfo fields if (contentTitle != null) { |