diff --git a/Projects/Features/PlaylistFeature/Sources/ViewControllers/MyPlaylistDetailViewController.swift b/Projects/Features/PlaylistFeature/Sources/ViewControllers/MyPlaylistDetailViewController.swift index d54bd37dd..01573ccab 100644 --- a/Projects/Features/PlaylistFeature/Sources/ViewControllers/MyPlaylistDetailViewController.swift +++ b/Projects/Features/PlaylistFeature/Sources/ViewControllers/MyPlaylistDetailViewController.swift @@ -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() } } }