mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Include updating context_uri along with tracks and current index.
This allows remote clients to show the green now-playing indication (#57).
This commit is contained in:
parent
1257f98915
commit
edabd042e4
1 changed files with 2 additions and 0 deletions
|
@ -628,9 +628,11 @@ impl SpircTask {
|
|||
fn update_tracks(&mut self, frame: &protocol::spirc::Frame) {
|
||||
let index = frame.get_state().get_playing_track_index();
|
||||
let tracks = frame.get_state().get_track();
|
||||
let context_uri = frame.get_state().get_context_uri().to_owned();
|
||||
|
||||
self.state.set_playing_track_index(index);
|
||||
self.state.set_track(tracks.into_iter().cloned().collect());
|
||||
self.state.set_context_uri(context_uri);
|
||||
}
|
||||
|
||||
fn load_track(&mut self, play: bool) {
|
||||
|
|
Loading…
Reference in a new issue