mpd: Add missing seeked event handling for idle

Fixes #1331

(cherry picked from commit 19daa89e15)
This commit is contained in:
Thomas Adamcik 2015-12-04 22:11:55 +01:00 committed by Stein Magnus Jodal
parent 149fa15cab
commit 22ec9d9060
2 changed files with 5 additions and 0 deletions

View File

@ -17,6 +17,8 @@ Bug fix release.
- Local: If the scan or clear commands are used on a library that does not
exist, exit with an error. (Fixes: :issue:`1298`)
- MPD: Notify idling clients when a seek is performed. (Fixes: :issue:`1331`)
v1.1.1 (2015-09-14)
===================

View File

@ -77,3 +77,6 @@ class MpdFrontend(pykka.ThreadingActor, CoreListener):
def stream_title_changed(self, title):
self.send_idle('playlist')
def seeked(self, time_position):
self.send_idle('player')