This commit is contained in:
buua436 2025-12-08 15:32:16 +08:00
parent 55f7d4e877
commit 2a68381704

View file

@ -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))