Fix name from config

This commit is contained in:
Nick Farina
2015-09-14 07:45:29 -07:00
parent 13347d1879
commit db3f32c577

View File

@@ -8,6 +8,7 @@ module.exports = {
function LockitronAccessory(log, config) {
this.log = log;
this.name = config["name"];
this.accessToken = config["api_token"];
this.lockID = config["lock_id"];
}