Get rid of warnings due to error being defined as a variable and then used in catch() out of scope.

This commit is contained in:
Michael Dietz
2016-02-18 11:12:30 +01:00
parent daadfd8194
commit dfb7adedce
2 changed files with 8 additions and 8 deletions

View File

@@ -36,8 +36,8 @@
function transfer(device) {
return new Promise(function(resolve, reject) {
//var url = urlMask.replace("{0}", device.name === "Hi_Rob" ? "Bye" : "Hi");
var url = urlMask52; // nRF52832 application (example BLE heart rate from Nordic SDK) for DFU OTA update.
var url = urlMask.replace("{0}", device.name === "Hi_Rob" ? "Bye" : "Hi");
//var url = urlMask52; // nRF52832 application (example BLE heart rate from Nordic SDK) for DFU OTA update.
download(url)
.then(hex => {