1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 09:37:12 +00:00

Fixed AirDate displayed on Episode Details modal

This commit is contained in:
Mark McDowall 2013-07-29 21:24:41 +02:00
parent 56a34b5ea6
commit 4fe127aca6

View file

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