aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2022-02-12 10:59:55 -0500
committerMax Isom <[email protected]>2022-02-12 10:59:55 -0500
commitf9ab7597c6ed4979ebf22f7c240ca38d31b46297 (patch)
tree9b9472dbccda4fe5987e6b52fbfe130ab3407726
parentfd7810f839cb920a8cd660bf0dc1776c6ddb2767 (diff)
downloadmuse-f9ab7597c6ed4979ebf22f7c240ca38d31b46297.tar.xz
muse-f9ab7597c6ed4979ebf22f7c240ca38d31b46297.zip
Fix typo
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/commands/config.ts2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd84024..316a765 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+### Fixed
+- `/config set-wait-after-queue-empties` now works (fixed typo)
## [1.1.0] - 2022-02-11
### Changed
diff --git a/src/commands/config.ts b/src/commands/config.ts
index b0a5215..5ed286f 100644
--- a/src/commands/config.ts
+++ b/src/commands/config.ts
@@ -85,7 +85,7 @@ export default class implements Command {
break;
}
- case 'set-wait-after-queue-empty': {
+ case 'set-wait-after-queue-empties': {
const delay = interaction.options.getInteger('delay')!;
await prisma.setting.update({