noidle fix

This commit is contained in:
Ondřej Žára 2020-05-09 10:08:36 +02:00
parent 783fa14351
commit d65dfa3e6c
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "ws2mpd",
"version": "2.2.0",
"version": "2.2.1",
"description": "",
"main": "index.js",
"scripts": {

View File

@ -119,8 +119,12 @@ exports.Queue = class extends EventEmitter {
}
add(str) {
if (str == "noidle" && this._current instanceof Idle) {
this._mpd.write(str + "\n");
if (str == "noidle") {
if (this._current instanceof Idle) {
this._mpd.write(str + "\n");
} else {
log("throwing away rogue noidle");
}
return;
}
this._waiting.push(str);