Skip to content

Commit

Permalink
fix(FEC-13789): show hotspots for pre and post entries
Browse files Browse the repository at this point in the history
  • Loading branch information
SivanA-Kaltura authored Mar 24, 2024
1 parent a8af9cc commit 75c0fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/live/live-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export class LiveProvider extends Provider {
}, {});

const [partType, originalEntryId, clipStartTimestamp] = clipId.split('-');
if (!clipStartTimestamp || setIdData.offset === undefined || partType !== 'content') return null;
if (!clipStartTimestamp || setIdData.offset === undefined) return null;

const firstClipStartTimestamp = +timestamp - +setIdData.offset - cueStartTime * 1000;
// @ts-ignore
Expand Down

0 comments on commit 75c0fe9

Please sign in to comment.