mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 07:13:42 +02:00
Fix main memory and storage card detection order for BeBook on OS X
This commit is contained in:
parent
41de18c014
commit
b6e7713fe3
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ def osx_sort_names(self, names):
|
|||
except:
|
||||
card_num = None
|
||||
|
||||
if card_num is not None and main_num is not None and card_num < main_num:
|
||||
if card_num is not None and main_num is not None and card_num > main_num:
|
||||
names['main'] = card
|
||||
names['carda'] = main
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue