mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-04-19 12:53:56 +02:00
parent
7846970f92
commit
c421529998
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
- `/fseek` now works again
|
||||||
|
|
||||||
## [1.8.1] - 2022-03-26
|
## [1.8.1] - 2022-03-26
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -38,7 +38,7 @@ export default class implements Command {
|
||||||
throw new Error('can\'t seek in a livestream');
|
throw new Error('can\'t seek in a livestream');
|
||||||
}
|
}
|
||||||
|
|
||||||
const seekValue = interaction.options.getString('value');
|
const seekValue = interaction.options.getString('time');
|
||||||
|
|
||||||
if (!seekValue) {
|
if (!seekValue) {
|
||||||
throw new Error('missing seek value');
|
throw new Error('missing seek value');
|
||||||
|
|
Loading…
Add table
Reference in a new issue