diff --git a/lib/gui/app/app.js b/lib/gui/app/app.js index 015e50f2..f8e94e95 100644 --- a/lib/gui/app/app.js +++ b/lib/gui/app/app.js @@ -242,7 +242,9 @@ app.run(($timeout) => { $timeout(() => { if (BLACKLISTED_DRIVES.length) { const allowedDrives = drives.filter((drive) => { - return !BLACKLISTED_DRIVES.includes(drive.devicePath) + return !(BLACKLISTED_DRIVES.includes(drive.devicePath) || + BLACKLISTED_DRIVES.includes(drive.device) || + BLACKLISTED_DRIVES.includes(drive.raw)) }) availableDrives.setDrives(allowedDrives) } else {