From 997906bab8aa65e0dc092ed9ec4cc1cdbf18850c Mon Sep 17 00:00:00 2001 From: Mario Drengner Date: Wed, 21 Oct 2015 14:35:35 +0200 Subject: [PATCH] Ignore Bridge No need to control the bridge --- platforms/Sonos.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/Sonos.js b/platforms/Sonos.js index 812a803..8e7581d 100644 --- a/platforms/Sonos.js +++ b/platforms/Sonos.js @@ -34,7 +34,7 @@ SonosPlatform.prototype = { that.log("Found device at " + device.host); device.deviceDescription(function (err, description) { - if (description["zoneType"] != '11' && description["zoneType"] != '8') { // 8 is the Sonos SUB + if (description["zoneType"] != '11' && description["zoneType"] != '8' && description["zoneType"] != '4') { // 8 is the Sonos SUB, 4 is the Sonos Bridge var roomName = description["roomName"]; if (!roomNamesFound[roomName]) {