Custom Query (2449 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (511 - 513 of 2449)

Ticket Resolution Summary Owner Reporter
#2256 Fixed Indexes aren't updated properly when removing columns Ratanak
Description

I've been experimenting with columns in the torrent view and found that the indexes keeping track of which ListStore columns are used by a plugin's view column are not updated properly when another plugin's column is removed. This can lead to the column rendering the wrong data in the view. Default columns are not affected since they have fixed indexes, but this can be an issue for plugin developers.

#2698 Fixed Column data indexes corrupted during column removal Ratanak
Description

There is a bug in the remove_column code. At line 502 of listview.py:

# Remove from the liststore columns list
for index in column_indices:
  del self.liststore_columns[index]

column_indices is an ascending list of data indexes that a plugin uses. Normally, if a plugin only registers one status field, it loops once and there is no side effect. However, if a plugin registers multiple status fields, deleting indexes in that order will cause the liststore_columns list to be corrupted because any items after the deleted index will be shifted down in the list which would change their indexes as the loop is being executed.

Reversing the order of column_indices should fix the problem.

#3262 Fixed WebUI cannot change password rasistasian
Description

i can't seem to change my webui password. The logs say

Error calling method `auth.change_password`: Unicode-objects must be encoded before hashing
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.