v2026.06.06 — UPnP recovery, library watcher, artist discovery, request auto-poll #87

Merged
bvandeusen merged 18 commits from dev into main 2026-06-06 23:31:28 -04:00
Showing only changes of commit 8a3104443c - Show all commits
@@ -172,6 +172,7 @@ class MinstrelForwardingPlayer(
if (active == null) {
super.play()
} else {
remoteState.setPlayIntent(true)
scope.launch {
runCatching { active.avTransport.play() }
.onSuccess {
@@ -193,6 +194,7 @@ class MinstrelForwardingPlayer(
if (active == null) {
super.pause()
} else {
remoteState.setPlayIntent(false)
scope.launch {
runCatching { active.avTransport.pause() }
.onSuccess {