1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Fixed airdate on episode modal

This commit is contained in:
Mark McDowall
2013-07-18 19:32:52 -07:00
parent 4a77197877
commit e6447352f3

View File

@@ -8,7 +8,7 @@ define(
Handlebars.registerHelper('EpisodeNumber', function () {
if (this.series.seriesType === 'daily') {
return FormatHelpers.DateHelper(this.airDate);
return Moment(this.airDate).format('L');
}
else {