From 363583ac4d828e2ecd296378cce6223f9b366760 Mon Sep 17 00:00:00 2001 From: baegteun Date: Fri, 1 Nov 2024 22:25:46 +0900 Subject: [PATCH] =?UTF-8?q?:bug:=20::=20[#1323]=20=EB=A7=88=EC=9D=B4=20?= =?UTF-8?q?=ED=94=8C=EB=A6=AC=20=EC=9E=AC=EC=83=9D=20=EC=8B=9C=20=ED=94=8C?= =?UTF-8?q?=EB=A6=AC=20=EC=A0=9C=EB=AA=A9=EC=9D=B4=20'=EC=99=81=ED=83=80?= =?UTF-8?q?=EB=B2=84=EC=8A=A4=20=EB=AE=A4=EC=A7=81'=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?=EB=85=B8=EC=B6=9C=EB=90=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ViewControllers/MyPlaylistDetailViewController.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() } } }