Skip to content

Commit 6867e14

Browse files
authored
Add missing } in GenerateNextSongId() in PlaylistManager.cs
1 parent ee9eb38 commit 6867e14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Orchestrion/Audio/PlaylistManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private static int GenerateNextSongId()
148148
} else { // played twice, move on to next song
149149
if (CurrentPlaylist.ShuffleMode == ShuffleMode.Off) {
150150
_currentSongIndex = ++_currentSongIndex % CurrentPlaylist.Songs.Count;
151-
else { // ShuffleMode.On
151+
} else { // ShuffleMode.On
152152
_currentSongIndex = Random.Shared.Next(CurrentPlaylist.Songs.Count);
153153
}
154154
}

0 commit comments

Comments
 (0)