mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 09:03:49 -07:00
DateTime.ToString fixes for other countries
Fixed: Aired Date sorting on Missing
This commit is contained in:
parent
7bdc10c370
commit
feaf63c758
6 changed files with 10 additions and 8 deletions
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Globalization;
|
||||
using System.Linq;
|
||||
using System.Linq.Dynamic;
|
||||
using System.Web.Mvc;
|
||||
|
@ -45,7 +46,7 @@ namespace NzbDrone.Web.Controllers
|
|||
Quality = h.Quality.ToString(),
|
||||
IsProper = h.IsProper,
|
||||
Date = h.Date.ToString(),
|
||||
DateSorter = h.Date.ToString("MM/dd/yyyy h:mm:ss tt"),
|
||||
DateSorter = h.Date.ToString("o", CultureInfo.InvariantCulture),
|
||||
Indexer = h.Indexer,
|
||||
EpisodeId = h.EpisodeId,
|
||||
NzbInfoUrl = h.NzbInfoUrl,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue