mpd: Add missing seeked event handling for idle
Fixes #1331
(cherry picked from commit 19daa89e15)
This commit is contained in:
parent
149fa15cab
commit
22ec9d9060
@ -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)
|
||||
===================
|
||||
|
||||
@ -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')
|
||||
|
||||
Loading…
Reference in New Issue
Block a user