mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
Fix typo
This commit is contained in:
parent
fd7810f839
commit
f9ab7597c6
|
@ -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
|
||||
|
|
|
@ -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({
|
||||
|
|
Loading…
Reference in a new issue