Fixed: Representation of episode start time when not starting at the full hour in am/pm notation

Co-Authored-By: Taloth <Taloth@users.noreply.github.com>
pull/2/head
Qstick 4 years ago
parent 16321377fc
commit 17b93bcc57

@ -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…
Cancel
Save