We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d771734 commit 4c945d7Copy full SHA for 4c945d7
1 file changed
src/tasks/CommissionsTask.py
@@ -406,7 +406,7 @@ def get_wave_info(self):
406
if self.wave_future and self.wave_future.done():
407
texts = self.wave_future.result()
408
self.wave_future = None
409
- if texts and len(texts) == 1:
+ if texts and len(texts) >= 1:
410
prev_wave = self.current_wave
411
if (m := re.match(r"(\d)/\d", texts[0].name)):
412
self.current_wave = int(m.group(1))
0 commit comments