Fix some toasts and notification position

This commit is contained in:
Ly-sec 2025-08-19 15:19:05 +02:00
parent b51e6a5e73
commit 0aa17ae18e
4 changed files with 35 additions and 9 deletions

View file

@ -141,4 +141,13 @@ Singleton {
device.trusted = true
device.connect()
}
function setBluetoothEnabled(enabled) {
if (!adapter) {
console.warn("BluetoothService: No adapter available")
return
}
adapter.enabled = enabled
}
}