Comparing version 0.3.3 to 0.3.4
@@ -130,3 +130,3 @@ /*jshint loopfunc: true */ | ||
if (lineData[0] === ATT_OP_HANDLE_IND) { | ||
this._queueCommand(this.handleConfirmation(valueHandle), null, function() { | ||
this._queueCommand(this.handleConfirmation(), null, function() { | ||
this.emit('handleConfirmation', this._address, valueHandle); | ||
@@ -308,7 +308,6 @@ }.bind(this)); | ||
L2capBle.prototype.handleConfirmation = function(handle) { | ||
var buf = new Buffer(3); | ||
L2capBle.prototype.handleConfirmation = function() { | ||
var buf = new Buffer(1); | ||
buf.writeUInt8(ATT_OP_HANDLE_CNF, 0); | ||
buf.writeUInt16LE(handle, 1); | ||
@@ -315,0 +314,0 @@ return buf; |
@@ -5,3 +5,3 @@ { | ||
"description": "A node.js BLE (Bluetooth low energy) central library.", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"repository": { | ||
@@ -8,0 +8,0 @@ "type": "git", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
205274
4511