Browse Source

Include updating context_uri along with tracks and current index.

This allows remote clients to show the green now-playing indication (#57).
Nick Steel 7 years ago
parent
commit
edabd042e4
1 changed files with 2 additions and 0 deletions
  1. 2 0
      connect/src/spirc.rs

+ 2 - 0
connect/src/spirc.rs

@@ -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) {