Simplify channels view

This commit is contained in:
Arkadiusz Fal
2023-05-29 16:31:01 +02:00
parent c6cff4dee4
commit be2e4acedd
3 changed files with 6 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ import Siesta
import SwiftUI
struct ChannelVideosView: View {
var channel: Channel?
var channel: Channel
var showCloseButton = false
var inNavigationView = true
@@ -32,7 +32,7 @@ struct ChannelVideosView: View {
@Default(.expandChannelDescription) private var expandChannelDescription
var presentedChannel: Channel? {
store.item?.channel ?? channel ?? recents.presentedChannel
store.item?.channel ?? channel
}
var contentItems: [ContentItem] {
@@ -165,10 +165,7 @@ struct ChannelVideosView: View {
.onAppear {
descriptionExpanded = expandChannelDescription
if let channel,
let cache = ChannelsCacheModel.shared.retrieve(channel.cacheKey),
store.item.isNil
{
if let cache = ChannelsCacheModel.shared.retrieve(channel.cacheKey), store.item.isNil {
store.replace(cache)
}