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

Commit 23b11359 authored by RoboErik's avatar RoboErik
Browse files

Clear the volume cache for all inactive state transitions

bug:16988480
Change-Id: I0426c76681f8ec832c3f72842ee494d286050fea
parent 2bac6129
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -94,8 +94,8 @@ public class MediaSessionStack {
            mSessions.add(0, record);
            clearCache();
            return true;
        } else if (newState == PlaybackState.STATE_PAUSED) {
            // Just clear the volume cache in this case
        } else if (!MediaSession.isActiveState(newState)) {
            // Just clear the volume cache when a state goes inactive
            mCachedVolumeDefault = null;
        }
        return false;