mirror of
https://github.com/Radarr/Radarr
synced 2024-12-25 01:11:43 +00:00
Fixed AirDate displayed on Episode Details modal
This commit is contained in:
parent
56a34b5ea6
commit
4fe127aca6
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ define(
|
||||||
Handlebars.registerHelper('EpisodeNumber', function () {
|
Handlebars.registerHelper('EpisodeNumber', function () {
|
||||||
|
|
||||||
if (this.series.seriesType === 'daily') {
|
if (this.series.seriesType === 'daily') {
|
||||||
return Moment(this.airDateUtc).format('L');
|
return Moment(this.airDate).format('L');
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue