From a338469c14d5326516737bbe51c1f06cd355f6cf Mon Sep 17 00:00:00 2001 From: Alexandre Almeida <1251067+Xinayder@users.noreply.github.com> Date: Mon, 10 Nov 2025 23:39:53 +0100 Subject: [PATCH] Check if window.navigator.serial exists for flashing.supported --- flasher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flasher.js b/flasher.js index a6b20f1..2258858 100644 --- a/flasher.js +++ b/flasher.js @@ -101,7 +101,7 @@ function setup() { } const flashing = reactive({ - supported: 'Serial' in window, + supported: 'Serial' in window || 'serial' in window.navigator, instance: null, active: false, percentage: 0,