dev → main: Android UPnP/Sonos transport parity + server stream URL extension #79

Merged
bvandeusen merged 69 commits from dev into main 2026-06-04 08:15:15 -04:00
Showing only changes of commit 41230b5afb - Show all commits
@@ -524,13 +524,14 @@ class PlayerController @Inject constructor(
val changed = current.isPlaying != effectiveIsPlaying || val changed = current.isPlaying != effectiveIsPlaying ||
current.positionMs != newPos || current.positionMs != newPos ||
current.durationMs != newDur current.durationMs != newDur
if (!changed) continue if (changed) {
uiStateInternal.value = current.copy( uiStateInternal.value = current.copy(
isPlaying = effectiveIsPlaying, isPlaying = effectiveIsPlaying,
positionMs = newPos, positionMs = newPos,
durationMs = newDur, durationMs = newDur,
bufferedPositionMs = newBuf, bufferedPositionMs = newBuf,
) )
}
} }
} }
} }