Add missing connection to config parameter

This commit is contained in:
bezzers
2015-07-24 08:22:24 -04:00
parent 2e689eb264
commit 443f77196a

View File

@@ -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"];
}