Skip to content

Commit

Permalink
fix (again? Why?) DRM decipherability change log
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Mar 14, 2023
1 parent a417d01 commit a3d83bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/manifest/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -787,10 +787,10 @@ function updateDeciperability(
const result = isDecipherable(representation);
if (result !== representation.decipherable) {
updates.push({ manifest, period, adaptation, representation });
representation.decipherable = result;
log.debug(`Decipherability changed for "${representation.id}"`,
`(${representation.bitrate})`,
String(representation.decipherable));
representation.decipherable = result;
}
}
}
Expand Down

0 comments on commit a3d83bc

Please sign in to comment.