Exposing backend hosts and ports as both lists and JSON on Snapcast plugin

This commit is contained in:
Fabio Manganiello 2019-01-08 18:24:59 +01:00
parent 80bd5b684c
commit 3c385a601f
1 changed files with 2 additions and 0 deletions

View File

@ -38,6 +38,8 @@ class MusicSnapcastPlugin(Plugin):
backend = get_backend('music.snapcast')
backend_hosts = backend.hosts if backend else [self.host]
backend_ports = backend.ports if backend else [self.port]
self.backend_hosts = backend_hosts
self.backend_ports = backend_ports
self.backend_hosts_json = json.dumps({
backend_hosts[i]: backend_ports[i]
for i in range(len(backend_hosts))