From fd19326c6b0ec891dc839e594eadbf76af142a4d Mon Sep 17 00:00:00 2001 From: Christoph Studer Date: Mon, 28 Jul 2014 15:44:04 +0200 Subject: [PATCH] Notification: Forward setUser() call to publicVersion Change-Id: I82715d69664fcbf57ca0599994004a8630f8587c --- core/java/android/app/Notification.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/java/android/app/Notification.java b/core/java/android/app/Notification.java index 5782edc3e498b..983e347f50d81 100644 --- a/core/java/android/app/Notification.java +++ b/core/java/android/app/Notification.java @@ -1708,6 +1708,9 @@ public class Notification implements Parcelable if (headsUpContentView != null) { headsUpContentView.setUser(user); } + if (publicVersion != null) { + publicVersion.setUser(user); + } } /**