(defaultDiskPath, force = false)
| 646 | }) |
| 647 | |
| 648 | async function setDiskPath(defaultDiskPath, force = false) { |
| 649 | var diskPath = getSetting("diskPath") |
| 650 | if (force || diskPath == "" || diskPath == undefined || diskPath == "undefined") { |
| 651 | setSetting("diskPath", defaultDiskPath) |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | function setDeviceInfo(devices) { |
| 656 | let cpu = devices.all.cpu.name |
no test coverage detected