mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-14 22:22:18 +00:00
fixed incorrect sort order of indexes in getArtists
This commit is contained in:
parent
f313ff5369
commit
06b862f5c3
@ -136,7 +136,7 @@ def list_artists():
|
|||||||
'name': a.name,
|
'name': a.name,
|
||||||
'albumCount': a.albums
|
'albumCount': a.albums
|
||||||
} for a in v ]
|
} for a in v ]
|
||||||
} for k, v in indexes.iteritems() ]
|
} for k, v in sorted(indexes.iteritems()) ]
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user