diff options
-rw-r--r-- | plugins/mpd_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mpd_client.py b/plugins/mpd_client.py index 9d64f449..52bd1c17 100644 --- a/plugins/mpd_client.py +++ b/plugins/mpd_client.py @@ -31,7 +31,7 @@ class UpdateThread(threading.Thread): if password: self.c.password(password) self.c.send_idle() - select([self.c], [], []) + select([self.c], [], [], timeout=600) self.c.fetch_idle() status = self.c.status() if status['state'] == 'play' and self.alive: |