fix playlist playback nicely

This commit is contained in:
Tim Müller
2022-04-01 18:53:07 +02:00
parent bc7e493e71
commit 3fd19eb149
3 changed files with 4 additions and 25 deletions

View File

@@ -46,9 +46,9 @@ namespace TomatenMusic_Api
if (e.Response.IsPlaylist)
{
if (e.Now)
await player.PlayPlaylistNowAsync(e.Response.Playlist);
await player.PlayNowAsync(e.Response.Playlist);
else
await player.PlayPlaylistAsync(e.Response.Playlist);
await player.PlayItemAsync(e.Response.Playlist);
}else
{
if (e.Now)