Null check action cloning.

am: 53c934cb75

Change-Id: I8cfdd960327c517df28eb7b00a8edac330f6b32f
This commit is contained in:
Julia Reynolds
2016-09-19 22:15:29 +00:00
committed by android-build-merger

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());
}