From a27abb106d40bddcb581dd59edf5b14bab3807bd Mon Sep 17 00:00:00 2001 From: Pawel Andruszkiewicz Date: Tue, 12 May 2015 14:45:40 +0200 Subject: [PATCH] [BluetoothLE] Fixed typing error. Change-Id: Ic35dd2c9fb512064dcbec802a52918fd48827aa2 Signed-off-by: Pawel Andruszkiewicz --- src/bluetooth/bluetooth_api.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bluetooth/bluetooth_api.js b/src/bluetooth/bluetooth_api.js index e5942683..a01d2e47 100644 --- a/src/bluetooth/bluetooth_api.js +++ b/src/bluetooth/bluetooth_api.js @@ -1848,7 +1848,7 @@ var _bleConnectChangeListener = _multipleListenerBuilder( var BluetoothGATTDescriptor = function(address) { var handle_ = data.handle; //address_ is needed to control if device is still connected - var address_ == address; + var address_ = address; BluetoothGATTDescriptor.prototype.readValue = function() { console.log('Entered BluetoothGATTDescriptor.readValue()'); -- 2.34.1