don't use undefined when your db returns null
This commit is contained in:
parent
1c4fd7148a
commit
a965dd70e2
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ module.exports = {
|
|||
defaults: DatabaseDefaults,
|
||||
setupServer: async function(ctx) {
|
||||
ctx.utils.log.servers.setup(ctx.guild);
|
||||
if (Servers.get(ctx.guild.id) === undefined) {
|
||||
if (Servers.get(ctx.guild.id) === null) {
|
||||
await Servers.set(ctx.guild.id, DatabaseDefaults.server);
|
||||
}
|
||||
ctx.utils.log.servers.fin(ctx.guild);
|
||||
|
|
Loading…
Reference in a new issue