File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333- [ connect] Fix "play" command not handled if missing "offset" property
3434- [ discovery] Fix libmdns zerconf setup errors not propagating to the main task.
3535- [ metadata] ` Show::trailer_uri ` is now optional since it isn't always present (breaking)
36+ - [ connect] Handle transfer of playback with empty "uri" field
3637
3738### Removed
3839
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ impl ConnectState {
342342 Err ( StateError :: InvalidTrackUri ( Some ( uri. clone ( ) ) ) ) ?
343343 }
344344 ( Some ( uri) , _) if !uri. is_empty ( ) => SpotifyId :: from_uri ( uri) ?,
345- ( None , Some ( gid) ) if !gid. is_empty ( ) => SpotifyId :: from_raw ( gid) ?,
345+ ( _ , Some ( gid) ) if !gid. is_empty ( ) => SpotifyId :: from_raw ( gid) ?,
346346 _ => Err ( StateError :: InvalidTrackUri ( None ) ) ?,
347347 } ;
348348
You can’t perform that action at this time.
0 commit comments