fix(voicefix): Don't delete webhook on update.

This commit is contained in:
2023-11-09 13:51:05 +02:00
parent 805ce3e85a
commit 83c67940bf

5
cog.py
View File

@@ -436,7 +436,10 @@ class VoiceFixCog(LionCog):
return
hook = discord.Webhook.from_url(webhook, client=self.bot)
await self.data.LinkHook.table.delete_where(channelid=channel.id)
existing = await self.data.LionHook.fetch(channel.id)
if existing:
await existing.update(webhookid=hook.id, token=hook.token)
else:
await self.data.LinkHook.create(
channelid=channel.id,
webhookid=hook.id,