This commit is contained in:
Max Isom 2022-02-12 10:59:55 -05:00
parent fd7810f839
commit f9ab7597c6
No known key found for this signature in database
GPG key ID: 25C9B1A7F6798880
2 changed files with 3 additions and 1 deletions

View file

@ -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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
### Fixed
- `/config set-wait-after-queue-empties` now works (fixed typo)
## [1.1.0] - 2022-02-11 ## [1.1.0] - 2022-02-11
### Changed ### Changed

View file

@ -85,7 +85,7 @@ export default class implements Command {
break; break;
} }
case 'set-wait-after-queue-empty': { case 'set-wait-after-queue-empties': {
const delay = interaction.options.getInteger('delay')!; const delay = interaction.options.getInteger('delay')!;
await prisma.setting.update({ await prisma.setting.update({