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

Commit e2581034 authored by Mykola Podolian's avatar Mykola Podolian Committed by Android (Google) Code Review
Browse files

Merge "Moved broadcast receiver blocking call to the background thread." into main

parents 8091259f 29e2d306
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1245,7 +1245,8 @@ public class BubbleController implements ConfigurationChangeListener,
                // if we're converting the bubble to a different mode, don't collapse since we want
                // the bubble to stay expanded.
                if (!isSelectedBubbleConvertingMode()) {
                    mMainExecutor.execute(() -> collapseStack());
                    // force-post the runnable, so broadcast receiver completes faster
                    mMainExecutor.executeDelayed(() -> collapseStack(), 0);
                }
            }
        }