mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 01:39:28 +02:00
Use futures::sync::mpsc::UnboundedSender::unbounded_send() instead of the deprecated send()
This commit is contained in:
parent
5237203899
commit
630de8c0a9
6 changed files with 13 additions and 13 deletions
|
@ -211,7 +211,7 @@ impl MercuryManager {
|
|||
|
||||
// if send fails, remove from list of subs
|
||||
// TODO: send unsub message
|
||||
sub.send(response.clone()).is_ok()
|
||||
sub.unbounded_send(response.clone()).is_ok()
|
||||
} else {
|
||||
// URI doesn't match
|
||||
true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue