We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887e702 commit f49d07fCopy full SHA for f49d07f
src/streaming/protection/controllers/ProtectionController.js
@@ -184,12 +184,13 @@ function ProtectionController(config) {
184
* essentially creates a new key session
185
*
186
* @param {string} sessionID
187
+ * @param {string} initData
188
* @memberof module:ProtectionController
189
* @instance
190
* @fires ProtectionController#KeySessionCreated
191
*/
- function loadKeySession(sessionID) {
192
- protectionModel.loadKeySession(sessionID);
+ function loadKeySession(sessionID, initData) {
193
+ protectionModel.loadKeySession(sessionID, initData, getSessionType(keySystem));
194
}
195
196
/**
0 commit comments