mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-04 23:53:23 +00:00
no exception on invalid sort
This commit is contained in:
parent
79b9eda351
commit
a7b12cc159
@ -144,7 +144,11 @@ class index:
|
||||
|
||||
#sorting:
|
||||
if vars.sort:
|
||||
torrent_list.sort(key=attrgetter(vars.sort))
|
||||
try:
|
||||
torrent_list.sort(key=attrgetter(vars.sort))
|
||||
except:
|
||||
log.debug('Sorting Failed')
|
||||
|
||||
if vars.order == 'up':
|
||||
torrent_list = reversed(torrent_list)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user