Push dev work to master #2

Merged
sixteenmillimeter merged 416 commits from dev into master 2018-07-19 15:29:02 +00:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 601d0cf581 - Show all commits

View File

@ -174,7 +174,9 @@ class BLE {
obj = JSON.parse(utf8) obj = JSON.parse(utf8)
result = bleno.Characteristic.RESULT_SUCCESS result = bleno.Characteristic.RESULT_SUCCESS
if (obj.type && this[`_on${capitalize(obj.type)}`]) { if (obj.type && this[`_on${capitalize(obj.type)}`]) {
this[`_on${capitalize(obj.type)}`]( data => { this[`_on${capitalize(obj.type)}`]( obj => {
let str = JSON.stringify(obj)
let data = new Buffer(str)
return callback(result, data.slice(offset, data.length)) return callback(result, data.slice(offset, data.length))
}) })
} else { } else {