1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-17 12:02:48 +01:00

Blacklist eLicenser copy protection dongle from Mac MTP probing.

Fixes issue #2232
This commit is contained in:
John Maguire 2011-09-15 17:42:03 +02:00
parent 58dae530f2
commit 309634bc18

View File

@ -474,7 +474,9 @@ void MacDeviceLister::USBDeviceAddedCallback(void* refcon, io_iterator_t it) {
if (device.vendor_id == 0x5ac || // I think we can safely skip Apple products.
// Blacklist ilok2 as this probe may be breaking it.
(device.vendor_id == 0x088e && device.product_id == 0x5036)) {
(device.vendor_id == 0x088e && device.product_id == 0x5036) ||
// Blacklist eLicenser
(device.vendor_id == 0x0819 && device.product_id == 0x0101)) {
continue;
}