From 76e7ef267756dc17420cd24f5649839c5882f002 Mon Sep 17 00:00:00 2001 From: Nick Farina Date: Sun, 23 Aug 2015 11:45:34 -0700 Subject: [PATCH] Fix identify() in Http --- accessories/Http.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/accessories/Http.js b/accessories/Http.js index 0967be7..e1859cf 100644 --- a/accessories/Http.js +++ b/accessories/Http.js @@ -69,8 +69,9 @@ HttpAccessory.prototype = { }.bind(this)); }, - identify: function() { + identify: function(callback) { this.log("Identify requested!"); + callback(); // success }, getServices: function() {