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

Commit 561ffe2d authored by Selim Cinek's avatar Selim Cinek Committed by Android Git Automerger
Browse files

am 8b112c35: am 4f1a468b: am 0485a234: am 027efdfd: am cffb98c8: Merge "Fixed...

am 8b112c35: am 4f1a468b: am 0485a234: am 027efdfd: am cffb98c8: Merge "Fixed a bug where notification where invisible on the lockscreen" into mnc-dev

* commit '8b112c35':
  Fixed a bug where notification where invisible on the lockscreen
parents b07de6d4 8b112c35
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -25,8 +25,6 @@ import com.android.systemui.statusbar.StatusBarState;

import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;

/**
 * A class to handle notifications and their corresponding groups.
@@ -143,7 +141,7 @@ public class NotificationGroupManager {
            return true;
        }
        NotificationGroup group = mGroupMap.get(sbn.getGroupKey());
        if (group != null && group.expanded) {
        if (group != null && (group.expanded || group.summary == null)) {
            return true;
        }
        return false;