From 44308fb812a76e8984723da5d5cd933d34c7d131 Mon Sep 17 00:00:00 2001 From: James Purser Date: Sun, 26 Jun 2022 21:39:20 +1000 Subject: [PATCH] Fix to in page audio player to actually play audio --- pages/podcasts/shows/[...episode].js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/podcasts/shows/[...episode].js b/pages/podcasts/shows/[...episode].js index ab9e658..80aaec9 100755 --- a/pages/podcasts/shows/[...episode].js +++ b/pages/podcasts/shows/[...episode].js @@ -45,7 +45,7 @@ const Episode = ( props ) => {

{props.episode.data[0].attributes.Title}

gtag.event({action: "play", category:"audio", label: "audio started", value: props.audiodata.audio_mp3})} onPause={e => gtag.event({action: "pause", category:"audio", label: "audio paused", value: props.audiodata.audio_mp3})} onEnded={e => gtag.event({action: "end", category:"audio", label: "audio ended", value: props.audiodata.audio_mp3})}