Merge "Fixed a bug where notification where invisible on the lockscreen" into mnc-dev
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationGroupManager.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationGroupManager.java
index 7072dcb..950b162 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationGroupManager.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/NotificationGroupManager.java
@@ -25,8 +25,6 @@
 
 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 @@
             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;