You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SystemUI will try to query for playback resumption
Expected result
Media resumption notification shows up.
Actual result
It doesn't show up, because media resumption code relied on the assumption that if no media controller sends any commands, the player will stay in STATE_IDLE. This optimization however breaks if a developer calls prepare() in or shortly after (in my case, which caused this to be a race).
See 2ac334e for a proposed fix (and more details), and #2458 (comment) for more context.