-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(Demo): Allow com.apple.fps.1_0 in the custom DRM System field #5600
Conversation
Incremental code coverage: No instrumented code was changed. |
demo/custom.js
Outdated
@@ -407,9 +407,14 @@ shakaDemo.Custom = class { | |||
const licenseServerURL = licenseServerUrlInput.value; | |||
const customDRMSystem = customDrmSystemInput.value; | |||
if (licenseServerURL) { | |||
const filterFairplay = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like this solution. Instead of filtering out fairplay from the loop when we add it in custom, I think it would be best if custom suppressed the entire loop. Let's move the loop to the else clause of if (customDRMSystem).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed!
No description provided.