diff --git a/tvOS/NowPlayingView.swift b/tvOS/NowPlayingView.swift index ecc67000..e231e4aa 100644 --- a/tvOS/NowPlayingView.swift +++ b/tvOS/NowPlayingView.swift @@ -20,6 +20,7 @@ struct NowPlayingView: View { @EnvironmentObject private var recents @Default(.saveHistory) private var saveHistory + @Default(.showHistoryInPlayer) private var showHistoryInPlayer var body: some View { if inInfoViewController { @@ -102,7 +103,7 @@ struct NowPlayingView: View { } } - if sections.contains(.playedPreviously), saveHistory, !visibleWatches.isEmpty { + if sections.contains(.playedPreviously), saveHistory, showHistoryInPlayer, !visibleWatches.isEmpty { Section(header: Text("Played Previously")) { ForEach(visibleWatches, id: \.videoID) { watch in Button {