We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f7cfdc commit 98e9703Copy full SHA for 98e9703
1 file changed
connect/src/state/tracks.rs
@@ -249,6 +249,14 @@ impl<'ct> ConnectState {
249
self.queue_count += 1;
250
});
251
252
+ // when you drag 'n drop the current track in the queue view into the "Next from: ..."
253
+ // section, it is only send as an empty item with just the provider and metadata, so we have
254
+ // to provide set the uri from the current track manually
255
+ tracks
256
+ .iter_mut()
257
+ .filter(|t| t.uri.is_empty())
258
+ .for_each(|t| t.uri = self.current_track(|ct| ct.uri.clone()));
259
+
260
self.player_mut().next_tracks = tracks;
261
}
262
0 commit comments