From 3b90a7d7a32e72b7528be5f8705e5ba8eee0338d Mon Sep 17 00:00:00 2001 From: thinkyside Date: Sun, 3 Nov 2024 14:36:02 +0900 Subject: [PATCH] =?UTF-8?q?[FIX/#177]=20FeedView=20=ED=84=B0=EC=B9=98=20?= =?UTF-8?q?=EB=B2=84=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/AppleMusicControllerServiceImpl.swift | 1 + PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift | 1 + 2 files changed, 2 insertions(+) diff --git a/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift b/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift index c5c4c5f0..94689db8 100644 --- a/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift +++ b/PLAT/PLAT/Data/AppleFrameworkService/Service/AppleMusicControllerServiceImpl.swift @@ -247,6 +247,7 @@ extension AppleMusicControllerServiceImpl { private func requestSongIds(for isrcs: [String]) async -> [String] { var songIDs: [String] = [] + // TODO: 병렬 처리 필요 for isrc in isrcs { await requestSongId(for: isrc) if let songId = self.firstSong?.id { diff --git a/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift b/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift index 7e57d4e5..08f94426 100644 --- a/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift +++ b/PLAT/PLAT/Presentaion/TrackFeed/TrackFeedView.swift @@ -224,6 +224,7 @@ private struct FeedRowView: View { FeedContentImage(track: track) .padding(.bottom, 6) + .zIndex(-1) FeedContentView(track: track) .padding(.bottom, 8)