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

Commit e627f55b authored by Ben Murdoch's avatar Ben Murdoch Committed by Android (Google) Code Review
Browse files

Merge "Make audio tag cope with live streams"

parents d4de05ea 9059f44f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -179,7 +179,7 @@ class HTML5Audio extends Handler
    }

    private void play() {
        if ((mState == ERROR || mState == IDLE) && mUrl != null) {
        if ((mState >= ERROR && mState < PREPARED) && mUrl != null) {
            resetMediaPlayer();
            setDataSource(mUrl);
            mAskToPlay = true;