Skip to content

Commit

Permalink
fix(FEC-14362): remove Summary cuepoint type
Browse files Browse the repository at this point in the history
  • Loading branch information
lianbenjamin committed Feb 19, 2025
1 parent 2704d69 commit f82cdc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/providers/vod/vod-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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},`;
}

Expand Down
3 changes: 1 addition & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ export enum KalturaCuePointType {
VIEW_CHANGE = 'viewchange',
CHAPTER = 'chapter',
HOTSPOT = 'hotspot',
CAPTION = 'caption',
SUMMARY = 'summary'
CAPTION = 'caption'
}

export enum CuePointTags {
Expand Down

0 comments on commit f82cdc1

Please sign in to comment.