Found and hopefullyfixed a bug with fenrir watchdog.

This commit is contained in:
Storm Dragon
2026-07-26 20:44:50 -04:00
parent c863245c24
commit 9ac2e9e844
2 changed files with 38 additions and 2 deletions
@@ -263,9 +263,10 @@ class driver(screenDriver):
while True:
# Read from file
try:
d += file.readline(1)
if not d:
chunk = file.readline(1)
if not chunk:
break
d += chunk
except Exception as e:
break
return d