Add support for voice channel parties #33

Closed
wasi-master wants to merge 277 commits from master into 2.0
80 changed files with 2623 additions and 2139 deletions
Showing only changes of commit a9dba2753f - Show all commits

View File

@ -109,13 +109,13 @@ class Loop:
raise
await asyncio.sleep(backoff.delay())
else:
await sleep_until(self._next_iteration)
if self._stop_next_iteration:
return
self._current_loop += 1
if self._current_loop == self.count:
break
await sleep_until(self._next_iteration)
except asyncio.CancelledError:
self._is_being_cancelled = True
raise