mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +00:00
Merge branch 'master' into multiuser
This commit is contained in:
commit
342da12d0c
1 changed files with 7 additions and 1 deletions
|
@ -622,7 +622,13 @@ class ListView:
|
||||||
# Column is not visible, no need to reposition
|
# Column is not visible, no need to reposition
|
||||||
continue
|
continue
|
||||||
|
|
||||||
column_at_position = columns[col_state.position]
|
try:
|
||||||
|
column_at_position = columns[col_state.position]
|
||||||
|
except IndexError:
|
||||||
|
# While updating the multiuser branch, which adds a new column
|
||||||
|
# an IndexError was raised, just continue processing, once
|
||||||
|
# deluge is restarted, it all should be good
|
||||||
|
continue
|
||||||
if col_state.name == column_at_position.get_title():
|
if col_state.name == column_at_position.get_title():
|
||||||
# It's in the right position
|
# It's in the right position
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue