Null check action cloning.

Bug: 31275706
Change-Id: I7f8c14a5863d2f787b9090ef740e80ce0c4b9335
This commit is contained in:
Julia Reynolds
2016-09-16 14:03:43 -04:00
parent 9603bc398a
commit 53c934cb75

View File

@@ -1229,7 +1229,7 @@ public class Notification implements Parcelable
getIcon(),
title,
actionIntent, // safe to alias
new Bundle(mExtras),
mExtras == null ? new Bundle() : new Bundle(mExtras),
getRemoteInputs(),
getAllowGeneratedReplies());
}