mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-07 21:48:14 -08:00
bugfix: Fix sending NowPlayingQueue in progress reports (#126)
This commit is contained in:
parent
043e465058
commit
85e5d34738
2 changed files with 0 additions and 6 deletions
|
|
@ -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,
|
||||
),
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue