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

Commit c431c156 authored by Adam Cohen's avatar Adam Cohen
Browse files

Fix NPE in RemoteViews (issue 6408103)

Change-Id: I3e7ff2941b721c2c0c5c4e7d598df794b105c391
parent 5d200646
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1058,8 +1058,10 @@ public class RemoteViews implements Parcelable, Filter {
        public ViewGroupAction(int viewId, RemoteViews nestedViews) {
            this.viewId = viewId;
            this.nestedViews = nestedViews;
            if (nestedViews != null) {
                configureRemoteViewsAsChild(nestedViews);
            }
        }

        public ViewGroupAction(Parcel parcel, BitmapCache bitmapCache) {
            viewId = parcel.readInt();