mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-09 07:28:14 -07: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,
|
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,
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue