Shuffle: fix quick song change deleting the whole queue

This commit is contained in:
2022-12-07 13:47:30 +01:00
parent b95edde7df
commit c785965041
2 changed files with 7 additions and 4 deletions

View File

@ -386,8 +386,9 @@ namespace unison
return;
int PlaylistLength = _mpd.GetStatus().PlaylistLength;
int Num = 10 - PlaylistLength;
if (Num < 1)
int Num = 50 - PlaylistLength;
if (PlaylistLength > 25)
return;
await UpdateFilter();