diff --git a/src/main_thread/decrypt/types.ts b/src/main_thread/decrypt/types.ts index f6636cb044..cfeb419487 100644 --- a/src/main_thread/decrypt/types.ts +++ b/src/main_thread/decrypt/types.ts @@ -122,13 +122,16 @@ export interface IProtectionData { content?: IContent; /** Every initialization data for that type. */ values: IInitDataValue[]; - - forceSessionRecreation?: boolean | undefined; } /** Protection initialization data actually processed by the `ContentDecryptor`. */ export interface IProcessedProtectionData extends Omit { values: InitDataValuesContainer; + /** + * Enforce to recreate the media key session if there is already a session created + * with this init data + */ + forceSessionRecreation?: boolean | undefined; } /**