This commit is contained in:
Bjoern Kerler 2023-04-20 10:56:53 +02:00
commit dfb27b081a
No known key found for this signature in database
GPG key ID: 52E823BB96A55380

View file

@ -1102,7 +1102,7 @@ class firehose(metaclass=LogBase):
info = []
while v != b'':
try:
v = self.cdc.read(timeout=None,length=0x80)
v = self.cdc.read(timeout=None)
if (b"response" in v and b"</data>" in v) or v == b'':
break
data = self.xml.getlog(v)