mirror of
https://github.com/jarulsamy/Plex-Bot.git
synced 2024-08-19 15:01:55 +02:00
🐛 Fix np status autoremoval
This commit is contained in:
parent
d48188870e
commit
63fea747c6
@ -232,7 +232,12 @@ class Plex(commands.Cog):
|
|||||||
if self.current_track:
|
if self.current_track:
|
||||||
embed, f = self._build_embed(self.current_track)
|
embed, f = self._build_embed(self.current_track)
|
||||||
bot_log.debug("Now playing")
|
bot_log.debug("Now playing")
|
||||||
await ctx.send(embed=embed, file=f)
|
if self.np_message_id:
|
||||||
|
await self.np_message_id.delete()
|
||||||
|
bot_log("Deleted old np status")
|
||||||
|
|
||||||
|
bot_log("Created np status")
|
||||||
|
self.np_message_id = await ctx.send(embed=embed, file=f)
|
||||||
|
|
||||||
@command()
|
@command()
|
||||||
async def clear(self, ctx):
|
async def clear(self, ctx):
|
||||||
|
Loading…
Reference in New Issue
Block a user