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

View file

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