1
0
Fork 0
mirror of synced 2024-05-03 04:02:28 +12:00

Ignore if the guild already exists

This commit is contained in:
phxntxm 2019-02-17 14:09:06 -06:00
parent e561e821ca
commit 867fea273b

View file

@ -727,7 +727,10 @@ WHERE
await ctx.send(f"{option} is not a valid config option. Use {ctx.prefix}config to list all config options")
else:
# First make sure there's an entry for this guild before doing anything
await ctx.bot.db.execute("INSERT INTO guilds(id) VALUES ($1)", ctx.guild.id)
try:
await ctx.bot.db.execute("INSERT INTO guilds(id) VALUES ($1)", ctx.guild.id)
except UniqueViolationError:
pass
try:
await coro(ctx, setting=setting)