Fix identify() in Http

This commit is contained in:
Nick Farina
2015-08-23 11:45:34 -07:00
parent dfdbc865c8
commit 76e7ef2677
+2 -1
View File
@@ -69,8 +69,9 @@ HttpAccessory.prototype = {
}.bind(this)); }.bind(this));
}, },
identify: function() { identify: function(callback) {
this.log("Identify requested!"); this.log("Identify requested!");
callback(); // success
}, },
getServices: function() { getServices: function() {