handle invalid json
This commit is contained in:
parent
00582dddc4
commit
3756351ed9
1 changed files with 5 additions and 2 deletions
|
|
@ -253,8 +253,11 @@ def worker(emu: str, apklist: queue.Queue[str], out_folder: Path, script: Path):
|
||||||
if folder.exists() and (folder / "data.json").exists():
|
if folder.exists() and (folder / "data.json").exists():
|
||||||
has_error = False
|
has_error = False
|
||||||
with (folder / "data.json").open() as fp:
|
with (folder / "data.json").open() as fp:
|
||||||
data = json.load(fp)
|
try:
|
||||||
if "error" in data:
|
data = json.load(fp)
|
||||||
|
if "error" in data:
|
||||||
|
has_error = True
|
||||||
|
except json.JSONDecodeError:
|
||||||
has_error = True
|
has_error = True
|
||||||
if (folder / "TIMEOUT").exists():
|
if (folder / "TIMEOUT").exists():
|
||||||
has_error = True
|
has_error = True
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue