You've already forked Sonarr
							
							
				mirror of
				https://github.com/Sonarr/Sonarr.git
				synced 2025-10-31 00:07:55 +02:00 
			
		
		
		
	Default sort ordering.
Upcoming won't obey the comparator though.
This commit is contained in:
		| @@ -3,8 +3,11 @@ define(['app', 'Series/EpisodeModel'], function () { | ||||
|     NzbDrone.Calendar.CalendarCollection = Backbone.Collection.extend({ | ||||
|         url       : NzbDrone.Constants.ApiRoot + '/calendar', | ||||
|         model     : NzbDrone.Series.EpisodeModel, | ||||
|         comparator: function (model) { | ||||
|             return model.get('airDate'); | ||||
|  | ||||
|         comparator: function(model) { | ||||
|             var date = new Date(model.get('airDate')); | ||||
|             var time = date.getTime(); | ||||
|             return time; | ||||
|         } | ||||
|     }); | ||||
| }); | ||||
| @@ -4,17 +4,13 @@ define(['app', 'Series/SeriesModel'], function () { | ||||
|         url  : NzbDrone.Constants.ApiRoot + '/series', | ||||
|         model: NzbDrone.Series.SeriesModel, | ||||
|  | ||||
|         mode: 'client', | ||||
|         comparator: function(model) { | ||||
|             return model.get('title'); | ||||
|         }, | ||||
|  | ||||
|         state: { | ||||
|             sortKey: "title", | ||||
|             order: -1, | ||||
|             pageSize: 1000000 | ||||
|         }, | ||||
|  | ||||
|         queryParams: { | ||||
|             sortKey: null, | ||||
|             order: null | ||||
|             order: -1 | ||||
|         } | ||||
|     }); | ||||
| }); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user