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
while i < len(chunks):
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
continue
mom_chunks[ck["mom_id"]].append(chunks.pop(i))