Check if window.navigator.serial exists for flashing.supported

This commit is contained in:
Alexandre Almeida 2025-11-10 23:39:53 +01:00
parent c698244bc4
commit a338469c14

View file

@ -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,