Skip to content

Commit

Permalink
Merge pull request #4577 from DiceTechnology/bugfix/DORIS-1144-mediak…
Browse files Browse the repository at this point in the history
…eysession-update

Bugfix: Failed to execute 'update' on 'MediaKeySession
  • Loading branch information
itsjamie authored May 23, 2022
2 parents db76be7 + 715ca74 commit 68f0cfb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/controller/eme-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,9 @@ class EMEController implements ComponentAPI {
data ? data.byteLength : data
}), updating key-session`
);
keySession.update(data);
keySession.update(data).catch((err) => {
logger.warn(`Updating key-session failed: ${err}`);
});
});
}

Expand Down

0 comments on commit 68f0cfb

Please sign in to comment.