mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
disable bridge because it seems to never returns if keepkey is plugged
This commit is contained in:
parent
47f1a7b632
commit
c82bd1d8cb
1 changed files with 3 additions and 1 deletions
|
@ -104,7 +104,9 @@ class TrezorCompatiblePlugin(HW_PluginBase):
|
|||
return None
|
||||
|
||||
def create_client(self, device, handler):
|
||||
transport = self._try_bridge(device) or self._try_hid(device)
|
||||
# disable bridge because it seems to never returns if keepkey is plugged
|
||||
#transport = self._try_bridge(device) or self._try_hid(device)
|
||||
transport = self._try_hid(device)
|
||||
if not transport:
|
||||
self.print_error("cannot connect to device")
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue