diff --git a/src/hooks/useOttAnalytics.ts b/src/hooks/useOttAnalytics.ts index 1b421c83c..f95cfcd08 100644 --- a/src/hooks/useOttAnalytics.ts +++ b/src/hooks/useOttAnalytics.ts @@ -30,7 +30,7 @@ const useOttAnalytics = (item?: PlaylistItem, feedId: string = '') => { }; const seekHandler = ({ offset }: jwplayer.SeekParam) => { - // TODO: according JWPlayer typings, the seek params doesn't contain a `duration` property, but it actually does + // TODO: according to JWPlayer typings, the seek param doesn't contain a `duration` property, but it actually does window.jwpltx.seek(offset, player.getDuration()); };