Skip to content

Commit 4c945d7

Browse files
committed
fix(commissions): 优化波次信息识别
1 parent d771734 commit 4c945d7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tasks/CommissionsTask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def get_wave_info(self):
406406
if self.wave_future and self.wave_future.done():
407407
texts = self.wave_future.result()
408408
self.wave_future = None
409-
if texts and len(texts) == 1:
409+
if texts and len(texts) >= 1:
410410
prev_wave = self.current_wave
411411
if (m := re.match(r"(\d)/\d", texts[0].name)):
412412
self.current_wave = int(m.group(1))

0 commit comments

Comments
 (0)