Skip to content

Commit

Permalink
๐ŸŽจ :: ์ฝ”๋“œ Formatting ์ ์šฉ
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Aug 28, 2024
1 parent a6e6879 commit 5407245
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,10 @@ private extension MusicDetailReactor {
LogManager.analytics(log)
}
PlayState.shared.append(item: PlaylistItem(id: song.videoID, title: song.title, artist: song.artistString))
return navigateMutation(navigate: .youtube(id: song.videoID, playPlatform: song.title.isContainShortsTagTitle ? .youtube : .automatic))
return navigateMutation(navigate: .youtube(
id: song.videoID,
playPlatform: song.title.isContainShortsTagTitle ? .youtube : .automatic
))
}

func nextButtonDidTap() -> Observable<Mutation> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ public struct WakmusicYoutubePlayer: WakmusicPlayer {
case youtube
case youtubeMusic
}

private enum VideoPlayType {
case videos(ids: [String])
case playlist(listID: String)
Expand Down

0 comments on commit 5407245

Please sign in to comment.