Cdm: Fix context availability check in parse_license()
This commit is contained in:
parent
71a43a069d
commit
3a15c1050a
|
@ -223,7 +223,7 @@ class Cdm:
|
|||
licence = License()
|
||||
licence.ParseFromString(license_message.msg)
|
||||
|
||||
context = self.context[licence.id.request_id]
|
||||
context = self.context.get(licence.id.request_id)
|
||||
if not context:
|
||||
raise ValueError("Cannot parse a license message without first making a license request")
|
||||
|
||||
|
|
Loading…
Reference in New Issue