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

@@@ -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
@@@ -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'