Skip to content

Commit

Permalink
fix skip error and update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoCoreDuo committed Jul 17, 2024
1 parent d320c27 commit 3c161b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ services:
### Node.js
**Prerequisites**:
* Node.js (18.x is recommended because it's the current LTS version)
* Node.js (18.17.0 or later is required and latest 18.x.x LTS is recommended)
* ffmpeg (4.1 or later)
1. `git clone https://github.com/codetheweb/muse.git && cd muse`
Expand Down
2 changes: 1 addition & 1 deletion src/services/player.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,8 @@ export default class {
if (this.getCurrent() && this.status !== STATUS.PAUSED) {
await this.play();
} else {
this.audioPlayer?.stop(true);
this.status = STATUS.IDLE;
this.audioPlayer?.stop(true);

const settings = await getGuildSettings(this.guildId);

Expand Down

0 comments on commit 3c161b7

Please sign in to comment.