1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Properly fix find_voice_player

This commit is contained in:
Steffo 2020-03-28 19:07:02 +01:00
parent c091898724
commit 49c1b39a53
5 changed files with 8 additions and 6 deletions

View file

@ -5,7 +5,7 @@
[tool.poetry]
name = "royalnet"
version = "5.6.4"
version = "5.6.5"
description = "A multipurpose bot and web framework"
authors = ["Stefano Pigozzi <ste.pigozzi@gmail.com>"]
license = "AGPL-3.0+"

View file

@ -237,7 +237,7 @@ class DiscordSerf(Serf):
return channels[0]
def find_voice_player(self, guild: "discord.Guild") -> Optional[VoicePlayer]:
def find_voice_players(self, guild: "discord.Guild") -> List[VoicePlayer]:
candidate_players: List[VoicePlayer] = []
for player in self.voice_players:
player: VoicePlayer
@ -246,4 +246,6 @@ class DiscordSerf(Serf):
if guild is not None and guild != player.voice_client.guild:
continue
candidate_players.append(player)
return candidate_players[0] if len(candidate_players) > 0 else None
if guild:
assert len(candidate_players) <= 1
return candidate_players

View file

@ -38,5 +38,5 @@ class PlayerNotConnectedError(VoicePlayerError):
Use :meth:`VoicePlayer.connect` first!"""
class PlayerAlreadyPlaying(VoicePlayerError):
class PlayerAlreadyPlayingError(VoicePlayerError):
"""The :class:`VoicePlayer` is already playing audio and cannot start playing audio again."""

View file

@ -86,7 +86,7 @@ class VoicePlayer:
if self.voice_client is None or not self.voice_client.is_connected():
raise PlayerNotConnectedError()
if self.voice_client.is_playing():
raise PlayerAlreadyPlaying()
raise PlayerAlreadyPlayingError()
log.debug("Getting next AudioSource...")
next_source: Optional["discord.AudioSource"] = await self.playing.next()
if next_source is None:

View file

@ -1 +1 @@
semantic = "5.6.4"
semantic = "5.6.5"