Open PredaaA opened 3 years ago
This should already be fixed -
if event_type == lavalink.LavalinkEvents.TRACK_STUCK:
embed = discord.Embed(
colour=await self.bot.get_embed_color(message_channel),
title=_("Track Stuck"),
description=_(
"Playback of the song has stopped due to an unexpected error.\n{error}"
).format(error=description),
)
else:
embed = discord.Embed(
title=_("Track Error"),
colour=await self.bot.get_embed_color(message_channel),
description="{}\n{}".format(
extra["message"].replace("\n", ""), description
),
)
The current logic is this.