mirror of
https://github.com/bkerler/edl.git
synced 2024-11-14 19:14:58 -05:00
firehose: fix MaxPayloadSizeToTargetInBytes handling
This commit is contained in:
parent
2c2eeddf66
commit
40a4c37da4
1 changed files with 1 additions and 1 deletions
|
@ -889,7 +889,7 @@ class firehose(metaclass=LogBase):
|
|||
else:
|
||||
self.error("Error on EDL Authentification")
|
||||
return False
|
||||
elif "MaxPayloadSizeToTargetInBytes" in line:
|
||||
elif "MaxPayloadSizeToTargetInBytes" in rsp.data:
|
||||
try:
|
||||
self.cfg.MemoryName = rsp.data["MemoryName"]
|
||||
self.cfg.MaxPayloadSizeToTargetInBytes = int(rsp.data["MaxPayloadSizeToTargetInBytes"])
|
||||
|
|
Loading…
Reference in a new issue