diff options
Diffstat (limited to 'src/commands/utilities/highlight-show.ts')
-rw-r--r-- | src/commands/utilities/highlight-show.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands/utilities/highlight-show.ts b/src/commands/utilities/highlight-show.ts index 37ed6f6..d0a91e6 100644 --- a/src/commands/utilities/highlight-show.ts +++ b/src/commands/utilities/highlight-show.ts @@ -20,10 +20,7 @@ export default class HighlightShowCommand extends BushCommand { assert(message.inGuild()); const [highlight] = await Highlight.findOrCreate({ - where: { - guild: message.guild.id, - user: message.author.id - } + where: { guild: message.guild.id, user: message.author.id } }); void client.highlightManager.syncCache(); |