Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
synzen committed Mar 17, 2020
1 parent f68d0f7 commit 4a00e0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/controller/restore.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ exports.normal = async (bot, message) => {
const file = await getID(message)
const id = file.id
const guild = bot.guilds.get(id)
if (!guild) return await message.chanel.send(`Unable to restore server, ID ${id} was not found in cache.`)
if (!guild) return await message.channel.send(`Unable to restore server, ID ${id} was not found in cache.`)
await dbOps.guildRss.update(file)
log.controller.success(`Server (ID: ${id}, Name: ${guild.name}) has been restored`, message.author)
await message.channel.send(`Server (ID: ${id}, Name: ${guild.name}) has been restored.`)
Expand Down

0 comments on commit 4a00e0d

Please sign in to comment.