mirror of
https://github.com/Sonarr/Sonarr
synced 2025-03-03 18:26:42 +00:00
Fixed airdate on episode modal
This commit is contained in:
parent
4a77197877
commit
e6447352f3
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 FormatHelpers.DateHelper(this.airDate);
|
return Moment(this.airDate).format('L');
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Reference in a new issue