bugfix: Fix sending NowPlayingQueue in progress reports (#126)

This commit is contained in:
Louis-Maxence Garret 2024-11-07 15:55:51 +01:00 committed by GitHub
parent 043e465058
commit 85e5d34738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 6 deletions

View file

@ -121,7 +121,6 @@ class DirectPlaybackModel implements PlaybackModel {
isMuted: false, isMuted: false,
isPaused: false, isPaused: false,
repeatMode: RepeatMode.repeatall, repeatMode: RepeatMode.repeatall,
nowPlayingQueue: itemsInQueue,
), ),
); );
return null; return null;
@ -138,7 +137,6 @@ class DirectPlaybackModel implements PlaybackModel {
playSessionId: playbackInfo.playSessionId, playSessionId: playbackInfo.playSessionId,
positionTicks: position.toRuntimeTicks, positionTicks: position.toRuntimeTicks,
failed: false, failed: false,
nowPlayingQueue: itemsInQueue,
), ),
totalDuration: totalDuration, totalDuration: totalDuration,
); );
@ -170,7 +168,6 @@ class DirectPlaybackModel implements PlaybackModel {
isMuted: false, isMuted: false,
positionTicks: position.toRuntimeTicks, positionTicks: position.toRuntimeTicks,
repeatMode: RepeatMode.repeatall, repeatMode: RepeatMode.repeatall,
nowPlayingQueue: itemsInQueue,
), ),
); );

View file

@ -122,7 +122,6 @@ class TranscodePlaybackModel implements PlaybackModel {
isMuted: false, isMuted: false,
isPaused: false, isPaused: false,
repeatMode: RepeatMode.repeatall, repeatMode: RepeatMode.repeatall,
nowPlayingQueue: itemsInQueue,
), ),
); );
return null; return null;
@ -139,7 +138,6 @@ class TranscodePlaybackModel implements PlaybackModel {
playSessionId: playbackInfo.playSessionId, playSessionId: playbackInfo.playSessionId,
positionTicks: position.toRuntimeTicks, positionTicks: position.toRuntimeTicks,
failed: false, failed: false,
nowPlayingQueue: itemsInQueue,
), ),
totalDuration: totalDuration, totalDuration: totalDuration,
); );
@ -172,7 +170,6 @@ class TranscodePlaybackModel implements PlaybackModel {
isPaused: !isPlaying, isPaused: !isPlaying,
isMuted: false, isMuted: false,
repeatMode: RepeatMode.repeatall, repeatMode: RepeatMode.repeatall,
nowPlayingQueue: itemsInQueue,
), ),
); );
return this; return this;