Fix mpd timeout error (#17254)

* Increase mpd client timeout

* Update mpd.py
This commit is contained in:
definitio 2018-10-09 13:24:39 +03:00 committed by Pascal Vizeli
parent 9d56730b8d
commit 6bf3f9e748
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class MpdDevice(MediaPlayerDevice):
# set up MPD client
self._client = mpd.MPDClient()
self._client.timeout = 5
self._client.timeout = 30
self._client.idletimeout = None
def _connect(self):