Merge branch 'hhm0-to_browse'
This commit is contained in:
commit
76ae3d3ec5
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ def diritem_sort_key(item):
|
||||||
if isdir:
|
if isdir:
|
||||||
key = string_nums_nocase_sort_key(item['title'])
|
key = string_nums_nocase_sort_key(item['title'])
|
||||||
else:
|
else:
|
||||||
key = int(item['track'])
|
key = int(item.get('track', 1))
|
||||||
return (isdir, key)
|
return (isdir, key)
|
||||||
|
|
||||||
class SubsonicApi():
|
class SubsonicApi():
|
||||||
|
|
Loading…
Add table
Reference in a new issue