Skip to content

Commit 145eb25

Browse files
committed
Add a missing semicolon
1 parent 45bc890 commit 145eb25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/windows/BluetoothLePlugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ function getDescriptor(deviceId, serviceId, characteristicId, descriptorId) {
690690
return new WinJS.Promise(function (successCallback, errorCallback, progressDispatch) {
691691
getCharacteristic(deviceId, serviceId, characteristicId).then(function (characteristic, deviceName) {
692692
if (descriptorId.length == 4) {
693-
descriptorId = gatt.GattDescriptor.convertShortIdToUuid(parseInt("0x" + descriptorId, 16))
693+
descriptorId = gatt.GattDescriptor.convertShortIdToUuid(parseInt("0x" + descriptorId, 16));
694694
}
695695
var descriptors = characteristic.getDescriptors(descriptorId);
696696
if (descriptors.length > 0) {

0 commit comments

Comments
 (0)