mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 11:18:54 -05:00
[Audio] Hotfix
This commit is contained in:
parent
af9b4d7cec
commit
e319ea4762
@ -1234,7 +1234,7 @@ class Audio:
|
||||
playlists = ", ".join(self._list_local_playlists())
|
||||
if playlists:
|
||||
playlists = "Available local playlists:\n\n" + playlists
|
||||
for page in pagify(playlists):
|
||||
for page in pagify(playlists, delims=[" "]):
|
||||
await self.bot.say(page)
|
||||
else:
|
||||
await self.bot.say("There are no playlists.")
|
||||
@ -1441,7 +1441,7 @@ class Audio:
|
||||
playlists = ", ".join(self._list_playlists(server))
|
||||
if playlists:
|
||||
playlists = "Available playlists:\n\n" + playlists
|
||||
for page in pagify(playlists):
|
||||
for page in pagify(playlists, delims=[" "]):
|
||||
await self.bot.say(page)
|
||||
else:
|
||||
await self.bot.say("There are no playlists.")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user