From 68c2b8fa768eead8491ce4186cb7236e5081e028 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 8 Dec 2012 19:15:37 +0530 Subject: [PATCH] Fix #1087978 (Unable to connect HTC Desire X Android device) --- src/calibre/devices/android/driver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/devices/android/driver.py b/src/calibre/devices/android/driver.py index 87aede5f84..060df202b0 100644 --- a/src/calibre/devices/android/driver.py +++ b/src/calibre/devices/android/driver.py @@ -10,7 +10,7 @@ import cStringIO from calibre.devices.usbms.driver import USBMS -HTC_BCDS = [0x100, 0x0222, 0x0226, 0x227, 0x228, 0x229, 0x9999] +HTC_BCDS = [0x100, 0x0222, 0x0226, 0x227, 0x228, 0x229, 0x0231, 0x9999] class ANDROID(USBMS):