mirror of
https://github.com/oSumAtrIX/free-librespot.git
synced 2025-12-19 18:04:20 +00:00
Update spirc shuffle command for tokio migration
This commit is contained in:
parent
9d5ac1b156
commit
9a75ca195e
1 changed files with 1 additions and 2 deletions
|
|
@ -352,7 +352,7 @@ impl Spirc {
|
||||||
let _ = self.commands.send(SpircCommand::Shutdown);
|
let _ = self.commands.send(SpircCommand::Shutdown);
|
||||||
}
|
}
|
||||||
pub fn shuffle(&self) {
|
pub fn shuffle(&self) {
|
||||||
let _ = self.commands.unbounded_send(SpircCommand::Shuffle);
|
let _ = self.commands.send(SpircCommand::Shuffle);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -525,7 +525,6 @@ impl SpircTask {
|
||||||
}
|
}
|
||||||
SpircCommand::Shuffle => {
|
SpircCommand::Shuffle => {
|
||||||
CommandSender::new(self, MessageType::kMessageTypeShuffle).send();
|
CommandSender::new(self, MessageType::kMessageTypeShuffle).send();
|
||||||
self.commands.close();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue