update: fixed timer

This commit is contained in:
2025-08-30 15:46:25 +08:00
parent 92fd314e42
commit 5990ddbaca
2 changed files with 32 additions and 11 deletions

View File

@@ -293,6 +293,11 @@ def main(driver: WebDriver):
recipients = data.get(parameters.get('column_address'), [])
limit = len(recipients)
if not limit:
tell('输入无效', filename, level=1)
outbox.put(Command('setStatus', 'FINISH'))
continue
names = data.get(parameters.get('column_name'), [None] * limit)
codes = data.get(parameters.get('column_code'), [None] * limit)
sents = data.setdefault(parameters.get('column_sent'), [None] * limit)