Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MythMusic: stop the player on first error when playing radio streams
  • Loading branch information
Paul Harrison committed Oct 22, 2017
1 parent f5c7f26 commit 33671e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythplugins/mythmusic/mythmusic/musicplayer.cpp
Expand Up @@ -859,7 +859,7 @@ void MusicPlayer::customEvent(QEvent *event)

m_errorCount++;

if (m_errorCount <= 5)
if (m_playMode != PLAYMODE_RADIO && m_errorCount <= 5)
nextAuto();
else
{
Expand Down

0 comments on commit 33671e7

Please sign in to comment.