mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Start player in pause mode if windows is reloaded/refreshed. Fixes #457
This commit is contained in:
parent
fd32a28788
commit
cff5c1ee53
1 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,7 @@ const Player = () => {
|
|||
theme: playerTheme,
|
||||
bounds: 'body',
|
||||
mode: 'full',
|
||||
autoPlay: true,
|
||||
autoPlay: false,
|
||||
preload: true,
|
||||
autoPlayInitLoadPlayList: true,
|
||||
loadAudioErrorPlayNext: false,
|
||||
|
@ -94,6 +94,7 @@ const Player = () => {
|
|||
return {
|
||||
...defaultOptions,
|
||||
clearPriorAudioLists: queue.clear,
|
||||
autoPlay: queue.clear || queue.playIndex === 0,
|
||||
playIndex: queue.playIndex,
|
||||
audioLists: queue.queue.map((item) => item),
|
||||
defaultVolume: queue.volume,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue