File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
34
- [ discovery] Fix libmdns zerconf setup errors not propagating to the main task.
35
35
- [ metadata] ` Show::trailer_uri ` is now optional since it isn't always present (breaking)
36
36
- [ connect] Handle transfer of playback with empty "uri" field
37
+ - [ connect] Correctly apply playing/paused state when transferring playback
37
38
38
39
### Removed
39
40
Original file line number Diff line number Diff line change @@ -1140,7 +1140,7 @@ impl SpircTask {
1140
1140
_ => 0 ,
1141
1141
} ;
1142
1142
1143
- let is_playing = matches ! ( transfer. playback. is_paused, Some ( is_playing ) if is_playing ) ;
1143
+ let is_playing = ! transfer. playback . is_paused ( ) ;
1144
1144
1145
1145
if self . connect_state . current_track ( |t| t. is_autoplay ( ) ) || autoplay {
1146
1146
debug ! ( "currently in autoplay context, async resolving autoplay for {ctx_uri}" ) ;
You can’t perform that action at this time.
0 commit comments