From 443f77196a8073e17e6f64be8c7e7dee19605dd6 Mon Sep 17 00:00:00 2001 From: bezzers Date: Fri, 24 Jul 2015 08:22:24 -0400 Subject: [PATCH] Add missing connection to config parameter --- platforms/Sonos.js | 1 + 1 file changed, 1 insertion(+) diff --git a/platforms/Sonos.js b/platforms/Sonos.js index 91bd04d..15523c6 100644 --- a/platforms/Sonos.js +++ b/platforms/Sonos.js @@ -3,6 +3,7 @@ var sonos = require('sonos'); function SonosPlatform(log, config){ this.log = log; + this.config = config; this.name = config["name"]; this.playVolume = config["play_volume"]; }