Skip to content

Commit

Permalink
fix(content/entry): remove "clipped from" from entry details if the e…
Browse files Browse the repository at this point in the history
…ntry is a room recording KMCNG-2593
  • Loading branch information
amirch1 committed Mar 24, 2024
1 parent 0d3daea commit 3b5afe8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export class EntryDetails implements OnInit, OnDestroy {
sourceType === KalturaSourceType.manualLiveStream.toString());
this._isRecordedLive = (sourceType === KalturaSourceType.recordedLive.toString());
this._hasDuration = (this._currentEntry.status !== KalturaEntryStatus.noContent && !this._isLive && this._currentEntry.mediaType.toString() !== KalturaMediaType.image.toString());
this._isClip = !this._isRecordedLive && (this._currentEntry.id !== this._currentEntry.rootEntryId);
this._isClip = !this._isRecordedLive && (this._currentEntry.id !== this._currentEntry.rootEntryId) && this._currentEntry.adminTags.indexOf('kalturameeting') === -1;
}
}
);
Expand Down

0 comments on commit 3b5afe8

Please sign in to comment.