update
This commit is contained in:
parent
55f7d4e877
commit
2a68381704
1 changed files with 2 additions and 1 deletions
|
|
@ -654,7 +654,8 @@ class Dealer:
|
||||||
i = 0
|
i = 0
|
||||||
while i < len(chunks):
|
while i < len(chunks):
|
||||||
ck = chunks[i]
|
ck = chunks[i]
|
||||||
if not ck.get("mom_id"):
|
mom_id = ck.get("mom_id")
|
||||||
|
if not isinstance(mom_id, str) or not mom_id.strip():
|
||||||
i += 1
|
i += 1
|
||||||
continue
|
continue
|
||||||
mom_chunks[ck["mom_id"]].append(chunks.pop(i))
|
mom_chunks[ck["mom_id"]].append(chunks.pop(i))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue