Fixed typos and warnings in snapcast backend

This commit is contained in:
Fabio Manganiello 2019-06-16 21:54:03 +02:00
parent e5d7334662
commit 32efebe405
1 changed files with 3 additions and 3 deletions

View File

@ -52,10 +52,10 @@ class MusicSnapcastBackend(Backend):
super().__init__(*args, **kwargs)
if ports is None:
ports = [self._DEFAULT_SNAPCAST_PORT]
if hosts is None:
hosts = ['localhost']
if ports is None:
ports = [self._DEFAULT_SNAPCAST_PORT]
self.hosts = hosts[:]
self.ports = ports[:]
@ -130,8 +130,8 @@ class MusicSnapcastBackend(Backend):
stream_id = msg.get('params', {}).get('stream_id')
evt = GroupStreamChangeEvent(host=host, group=group_id, stream=stream_id)
elif msg.get('method') == 'Stream.OnUpdate':
stream_id = msg.get('params', {}).get('stream_id')
stream = msg.get('params', {}).get('stream')
stream_id = stream.get('id')
evt = StreamUpdateEvent(host=host, stream_id=stream_id, stream=stream)
elif msg.get('method') == 'Server.OnUpdate':
server = msg.get('params', {}).get('server')