aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2020-03-25 17:32:43 -0500
committerMax Isom <[email protected]>2020-03-25 17:32:43 -0500
commitdc70a37e962d39ddc5781525d3178e5d9ebe6861 (patch)
tree53199228b0eccd9f6821aa660d5fec55558fd735 /src/commands
parente1c9f988c3368fefe44dcc3a381cf29534b161a6 (diff)
downloadmuse-dc70a37e962d39ddc5781525d3178e5d9ebe6861.tar.xz
muse-dc70a37e962d39ddc5781525d3178e5d9ebe6861.zip
Fix position tracking bug and catch ffmpeg errors
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/queue.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/queue.ts b/src/commands/queue.ts
index 67f88a4..8bfe155 100644
--- a/src/commands/queue.ts
+++ b/src/commands/queue.ts
@@ -16,7 +16,8 @@ export default class implements Command {
public name = 'queue';
public aliases = ['q'];
public examples = [
- ['queue', 'shows current queue']
+ ['queue', 'shows current queue'],
+ ['queue 2', 'shows second page of queue']
];
private readonly playerManager: PlayerManager;