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

Commit f87853c2 authored by Mady Mellor's avatar Mady Mellor
Browse files

Fix bubbles returning after a runtime restart

If the bubble wasn't showing in the shade, but also
wasn't a bubble -- we never updated flag bubble to
be false to NoManService. This meant these notifs
would be re-added as bubbles after a runtime restart

Fixes: 157498034
Test: manual
Change-Id: I17c384107f4b21b84597967fe0c369acfcd3a88c
parent aadbf05a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1214,7 +1214,7 @@ public class BubbleController implements ConfigurationController.ConfigurationLi
                            }
                        }
                    } else {
                        if (bubble.isBubble() && bubble.showInShade()) {
                        if (bubble.isBubble()) {
                            setIsBubble(bubble, false /* isBubble */);
                        }
                        if (bubble.getEntry() != null && bubble.getEntry().getRow() != null) {