mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
DateTime.ToString fixes for other countries
Fixed: Aired Date sorting on Missing
This commit is contained in:
@@ -49,10 +49,10 @@
|
||||
function airDate (source, type, val) {
|
||||
// 'display' and 'filter' use our fancy naming
|
||||
if (type === 'display' || type === 'filter') {
|
||||
return source["AirDateString"];
|
||||
return source["AirDate"];
|
||||
}
|
||||
// 'sort' and 'type' both just use the raw data
|
||||
return source["AirDate"];
|
||||
return source["AirDateSorter"];
|
||||
}
|
||||
|
||||
function actions(row) {
|
||||
|
||||
Reference in New Issue
Block a user