mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
parent
7846970f92
commit
c421529998
|
@ -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
|
||||
- `/fseek` now works again
|
||||
|
||||
## [1.8.1] - 2022-03-26
|
||||
### Changed
|
||||
|
|
|
@ -38,7 +38,7 @@ export default class implements Command {
|
|||
throw new Error('can\'t seek in a livestream');
|
||||
}
|
||||
|
||||
const seekValue = interaction.options.getString('value');
|
||||
const seekValue = interaction.options.getString('time');
|
||||
|
||||
if (!seekValue) {
|
||||
throw new Error('missing seek value');
|
||||
|
|
Loading…
Reference in a new issue