diff --git a/TomatenMusicCore/Music/PlayerQueue.cs b/TomatenMusicCore/Music/PlayerQueue.cs index b8ca3cf..b3802f8 100644 --- a/TomatenMusicCore/Music/PlayerQueue.cs +++ b/TomatenMusicCore/Music/PlayerQueue.cs @@ -157,8 +157,7 @@ namespace TomatenMusic.Music if (type == LoopType.QUEUE) { - QueueLoopList = new List(Queue); - QueueLoopList.Add(LastTrack); + QueueLoopList = new List(QueueLoopList.Prepend(LastTrack)); } } }