mirror of
https://github.com/Readarr/Readarr
synced 2025-12-14 20:36:18 +01:00
Fixed: Representation of episode start time when not starting at the full hour in am/pm notation
Signed-off-by: Robin Dadswell <robin@dadswell.email>
This commit is contained in:
parent
7e00dd731c
commit
3a5752f3cc
1 changed files with 4 additions and 2 deletions
|
|
@ -5,15 +5,17 @@ function formatTime(date, timeFormat, { includeMinuteZero = false, includeSecond
|
|||
return '';
|
||||
}
|
||||
|
||||
const time = moment(date);
|
||||
|
||||
if (includeSeconds) {
|
||||
timeFormat = timeFormat.replace(/\(?:mm\)?/, ':mm:ss');
|
||||
} else if (includeMinuteZero) {
|
||||
} else if (includeMinuteZero || time.minute() !== 0) {
|
||||
timeFormat = timeFormat.replace('(:mm)', ':mm');
|
||||
} else {
|
||||
timeFormat = timeFormat.replace('(:mm)', '');
|
||||
}
|
||||
|
||||
return moment(date).format(timeFormat);
|
||||
return time.format(timeFormat);
|
||||
}
|
||||
|
||||
export default formatTime;
|
||||
|
|
|
|||
Loading…
Reference in a new issue