Skip to content

Commit

Permalink
Merge pull request #1324 from wakmusic/1323-my-playlist-name-is-diffr…
Browse files Browse the repository at this point in the history
…enct

🔀 :: (#1323) 마이 플리 재생 시 플리 제목이 '왁타버스 뮤직'으로 노출됨
  • Loading branch information
baekteun authored Nov 2, 2024
2 parents 8f3200a + 363583a commit a5929b8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -596,9 +596,9 @@ extension MyPlaylistDetailViewController: PlayButtonGroupViewDelegate {
PlayState.shared.append(contentsOf: songs.map { PlaylistItem(id: $0.id, title: $0.title, artist: $0.artist) })

if songs.allSatisfy({ $0.title.isContainShortsTagTitle }) {
WakmusicYoutubePlayer(ids: songs.map { $0.id }, title: "왁타버스 뮤직", playPlatform: .youtube).play()
WakmusicYoutubePlayer(ids: songs.map { $0.id }, title: title, playPlatform: .youtube).play()
} else {
WakmusicYoutubePlayer(ids: songs.map { $0.id }, title: "왁타버스 뮤직").play()
WakmusicYoutubePlayer(ids: songs.map { $0.id }, title: title).play()
}
}
}
Expand Down

0 comments on commit a5929b8

Please sign in to comment.