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

Commit e7b3ed2c authored by Amith Yamasani's avatar Amith Yamasani Committed by Android Git Automerger
Browse files

am e96e0a1a: Merge "Resolve USER_ALL when inflating notification views." into jb-mr1-dev

* commit 'e96e0a1a':
  Resolve USER_ALL when inflating notification views.
parents 35e01866 e96e0a1a
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -896,6 +896,9 @@ public class Notification implements Parcelable


    /** {@hide} */
    /** {@hide} */
    public void setUser(UserHandle user) {
    public void setUser(UserHandle user) {
        if (user.getIdentifier() == UserHandle.USER_ALL) {
            user = UserHandle.OWNER;
        }
        if (tickerView != null) {
        if (tickerView != null) {
            tickerView.setUser(user);
            tickerView.setUser(user);
        }
        }