From 43c03464363c29de30e78b92282c2de4a730ad2c Mon Sep 17 00:00:00 2001 From: Nick Farina Date: Wed, 5 Aug 2015 08:55:19 -0700 Subject: [PATCH] [Sonos] SUB isn't playable --- platforms/Sonos.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/Sonos.js b/platforms/Sonos.js index 15523c6..7ff0efc 100644 --- a/platforms/Sonos.js +++ b/platforms/Sonos.js @@ -17,7 +17,7 @@ SonosPlatform.prototype = { that.log("Found device at " + device.host); device.deviceDescription(function (err, description) { - if (description["zoneType"] != '11') { + if (description["zoneType"] != '11' && description["zoneType"] != '8') { // 8 is the Sonos SUB that.log("Found playable device - " + description["roomName"]); // device is an instance of sonos.Sonos var accessory = new SonosAccessory(that.log, that.config, device, description);