diff --git a/lib/gui/app/app.js b/lib/gui/app/app.js index c7cbd621..01a0dfc6 100644 --- a/lib/gui/app/app.js +++ b/lib/gui/app/app.js @@ -224,7 +224,7 @@ app.run(($timeout) => { $timeout(() => { if (BLACKLISTED_DRIVES.length) { const allowedDrives = drives.filter((drive) => { - return !BLACKLISTED_DRIVES.includes(drive.device) + return !BLACKLISTED_DRIVES.includes(drive.devicePath) }) availableDrives.setDrives(allowedDrives) } else {