fix up sorting on the request page

This commit is contained in:
Drewster727 2016-03-27 16:54:54 -05:00
parent cccb71b605
commit 3d944b32a8
4 changed files with 51 additions and 41 deletions

View file

@ -90,7 +90,9 @@ namespace PlexRequests.UI.Modules
Id = movie.Id,
PosterPath = movie.PosterPath,
ReleaseDate = movie.ReleaseDate.Humanize(),
ReleaseDateTicks = movie.ReleaseDate.Ticks,
RequestedDate = movie.RequestedDate.Humanize(),
RequestedDateTicks = movie.RequestedDate.Ticks,
Approved = movie.Approved,
Title = movie.Title,
Overview = movie.Overview,
@ -119,7 +121,9 @@ namespace PlexRequests.UI.Modules
Id = tv.Id,
PosterPath = tv.PosterPath,
ReleaseDate = tv.ReleaseDate.Humanize(),
ReleaseDateTicks = tv.ReleaseDate.Ticks,
RequestedDate = tv.RequestedDate.Humanize(),
RequestedDateTicks = tv.RequestedDate.Ticks,
Approved = tv.Approved,
Title = tv.Title,
Overview = tv.Overview,