Allow Kodi live streams to be recognized as paused (#14623)

pull/14824/head
quthla 2018-06-04 13:24:28 +02:00 committed by Lewis Juggins
parent 39843a73de
commit 1d23f7f900
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ class KodiDevice(MediaPlayerDevice):
if not self._players:
return STATE_IDLE
if self._properties['speed'] == 0 and not self._properties['live']:
if self._properties['speed'] == 0:
return STATE_PAUSED
return STATE_PLAYING