From cf662a6a89d47dcf7a40c7688fff1c8099ec009a Mon Sep 17 00:00:00 2001 From: Jens Maus Date: Tue, 5 Apr 2016 11:48:51 +0200 Subject: [PATCH] integrated fix for coordinator devices as documented at https://github.com/stephen/airsonos/issues/216 --- lib/logicalDevice.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logicalDevice.js b/lib/logicalDevice.js index 2f343de..88f3d2c 100644 --- a/lib/logicalDevice.js +++ b/lib/logicalDevice.js @@ -83,7 +83,7 @@ var search = function(callback) { // bucket devices by groupid devices.forEach(function(device) { - if (device.name === 'BRIDGE' || device.name === 'BOOST') return; // devices to ignore in search + if (device.coordinator === 'false' || device.name === 'BRIDGE' || device.name === 'BOOST') return; // devices to ignore in search if (!groups[device.group]) groups[device.group] = { members: [] };