forked from platypush/platypush
Added played files/notes in stream in query_streams
This commit is contained in:
parent
3554968468
commit
3b681bbf57
1 changed files with 2 additions and 0 deletions
|
@ -581,6 +581,8 @@ class SoundPlugin(Plugin):
|
||||||
|
|
||||||
for i, stream in streams.items():
|
for i, stream in streams.items():
|
||||||
stream['playback_state'] = self.playback_state[i].name
|
stream['playback_state'] = self.playback_state[i].name
|
||||||
|
if i in self.stream_mixes:
|
||||||
|
stream['mix'] = list(self.stream_mixes[i])
|
||||||
|
|
||||||
return streams
|
return streams
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue