diff --git a/client/components/modals/podcast/ViewEpisode.vue b/client/components/modals/podcast/ViewEpisode.vue index f5fa69387..50f83eecb 100644 --- a/client/components/modals/podcast/ViewEpisode.vue +++ b/client/components/modals/podcast/ViewEpisode.vue @@ -120,7 +120,7 @@ export default { const timeRegex = /\b((\d{1,2}:)?\d{1,2}:\d{2})\b/g return htmlString.replace(timeRegex, (match) => { - const totalSeconds = timeStringToSeconds(match) + const totalSeconds = this.timeStringToSeconds(match) if (totalSeconds !== null) { return `${match}` }