From e46c451746ab4c6f336b272141d8ac30beac728e Mon Sep 17 00:00:00 2001 From: Rastislav Vysoky Date: Sun, 23 Feb 2025 11:54:56 +0100 Subject: [PATCH] bugfix --- flasher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flasher.js b/flasher.js index 6fec1e1..f758998 100644 --- a/flasher.js +++ b/flasher.js @@ -202,7 +202,7 @@ function setup() { } } else if(device.type === 'nrf52') { - const dfu = this.flashing.instance = new Dfu(port, selected.wipe); + const dfu = flashing.instance = new Dfu(port, selected.wipe); const zipFile = await resp.blob(); flashing.active = true;