Auto-commit before update (2026-04-03 19:20)

This commit is contained in:
Dallas Groot 2026-04-03 19:20:29 -07:00
parent f39eaff281
commit e0b2575e45

View file

@ -917,7 +917,7 @@ struct MyMusicView: View {
private func playAlbumNext(_ album: Album) {
Task {
if let detail = try? await serverManager.client.getAlbum(id: album.id),
let songs = detail?.song {
let songs = detail.song {
await MainActor.run {
for song in songs.reversed() { audioPlayer.playNext(song) }
}
@ -928,7 +928,7 @@ struct MyMusicView: View {
private func playAlbumLater(_ album: Album) {
Task {
if let detail = try? await serverManager.client.getAlbum(id: album.id),
let songs = detail?.song {
let songs = detail.song {
await MainActor.run {
for song in songs { audioPlayer.playLater(song) }
}