From f82cdc1b5c6dd14bca750da89811015af132279a Mon Sep 17 00:00:00 2001 From: lianbenjamin Date: Wed, 19 Feb 2025 13:31:23 +0200 Subject: [PATCH] fix(FEC-14362): remove Summary cuepoint type --- src/providers/vod/vod-provider.ts | 2 +- src/types.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/providers/vod/vod-provider.ts b/src/providers/vod/vod-provider.ts index 378ab51..25da41e 100644 --- a/src/providers/vod/vod-provider.ts +++ b/src/providers/vod/vod-provider.ts @@ -44,7 +44,7 @@ export class VodProvider extends Provider { thumbSubTypesFilter = `${KalturaThumbCuePointSubType.SLIDE},`; } - if (this._types.has(KalturaCuePointType.CHAPTER) && !this._types.has(KalturaCuePointType.SUMMARY)) { + if (this._types.has(KalturaCuePointType.CHAPTER)) { thumbSubTypesFilter += `${KalturaThumbCuePointSubType.CHAPTER},`; } diff --git a/src/types.ts b/src/types.ts index 862f42c..fa2720c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -13,8 +13,7 @@ export enum KalturaCuePointType { VIEW_CHANGE = 'viewchange', CHAPTER = 'chapter', HOTSPOT = 'hotspot', - CAPTION = 'caption', - SUMMARY = 'summary' + CAPTION = 'caption' } export enum CuePointTags {