mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
reverting a change made yesterday regarding sorting
the change fixed sorting titles of newly added movies without a refresh however, people have noticed it broke sorting of "In Cinemas" column in general. i commented out the change; but also added a special case in the comment, that would fix the case in question, without breaking the others; however, more investigating is needed because there is an issue with sorting newly added movies in general and the fix this reverts was never good enough anyway.
This commit is contained in:
parent
1894d493f3
commit
d9a3f303e7
1 changed files with 3 additions and 3 deletions
|
@ -111,9 +111,9 @@ var Collection = PageableCollection.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
sort : function(options){
|
sort : function(options){
|
||||||
if (this.mode == 'server' && this.state.order == '-1'){
|
//if (this.mode == 'server' && this.state.order == '-1' && this.state.sortKey === 'sortTitle'){
|
||||||
this.origSort(options);
|
// this.origSort(options);
|
||||||
}
|
//}
|
||||||
},
|
},
|
||||||
|
|
||||||
save : function() {
|
save : function() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue