mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-10 03:55: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).
|
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
|
||||||
|
|
|
@ -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({
|
||||||
|
|
Loading…
Reference in a new issue