Merge branch 'seek-cancel-fix' into dev

This commit is contained in:
daniel-c-harvey
2026-06-10 09:03:11 -04:00
@@ -327,6 +327,11 @@ public class StreamingAudioPlayerService : AudioPlayerService, IStreamingPlayerS
LoadProgress = 1.0;
await NotifyStateChanged();
}
catch (OperationCanceledException)
{
// Cancellation is expected during track switch or seek — propagate cleanly.
throw;
}
catch (Exception ex)
{
StreamingErrorHandler.LogError(_logger, ex, "StreamAudioWithEarlyPlayback");