Merge commit 'tizen_5.5' into tizen_6.0 85/250785/2
authorPiotr Kosko/Native/Web API (PLT) /SRPOL/Engineer/Samsung Electronics <p.kosko@samsung.com>
Mon, 4 Jan 2021 12:37:04 +0000 (13:37 +0100)
committerPiotr Kosko/Native/Web API (PLT) /SRPOL/Engineer/Samsung Electronics <p.kosko@samsung.com>
Mon, 4 Jan 2021 12:37:04 +0000 (13:37 +0100)
Change-Id: I7d175b5f87cdcbc8a2d701dc5228a6f4b98a92a8

1  2 
packaging/webapi-plugins.spec
src/bluetooth/bluetooth_api.js

index dbad03bdb4acc7e99559d47dbcd87b9bfac8427d,a28cbc506f1f64a9e45b534f32590ccf3f6653bf..a99649954c357c5bb583cbb25cb1c7e78a914c86
@@@ -10,7 -10,7 +10,7 @@@
  
  
  Name:       webapi-plugins
- Version:    2.77
 -Version:    2.70
++Version:    2.78
  Release:    0
  License:    Apache-2.0 and BSD-3-Clause and MIT
  Group:      Development/Libraries
index 826cbb9e13922334adebeea00a1161390d57b13b,212beb86a50e974aebae85f8d7d0da2d250cbec8..1cbaf96a649c716fc953b112a09a776030c63e27
@@@ -1646,18 -1532,10 +1644,20 @@@ BluetoothLEAdapter.prototype.stopScan 
      if (native.isFailure(result)) {
          throw native.getErrorObject(result);
      }
+     _bleScanListener.removeListener();
  };
  
 +BluetoothLEAdapter.prototype.isScanning = function() {
 +    privUtils_.log('Entered BluetoothLEAdapter.isScanning()');
 +
 +    var result = native.callSync('BluetoothLEAdapterIsScanning', {});
 +    if (native.isFailure(result)) {
 +        throw native.getErrorObject(result);
 +    }
 +    return native.getResultObject(result);
 +};
 +
  var _BluetoothAdvertisePacketType = {
      ADVERTISE: 'ADVERTISE',
      SCAN_RESPONSE: 'SCAN_RESPONSE'