aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--src/commands/fseek.ts2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8bac1d5..9d2ae08 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/src/commands/fseek.ts b/src/commands/fseek.ts
index 3e34438..7d0e553 100644
--- a/src/commands/fseek.ts
+++ b/src/commands/fseek.ts
@@ -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');