diff --git a/Shared/Channels/ChannelPlaylistView.swift b/Shared/Channels/ChannelPlaylistView.swift index 2c9dca2c..60d71478 100644 --- a/Shared/Channels/ChannelPlaylistView.swift +++ b/Shared/Channels/ChannelPlaylistView.swift @@ -136,9 +136,11 @@ struct ChannelPlaylistView: View { } } label: { HStack(spacing: 12) { - ThumbnailView(url: store.item?.thumbnailURL ?? playlist?.thumbnailURL) - .frame(width: 60, height: 30) - .clipShape(RoundedRectangle(cornerRadius: 2)) + if let url = store.item?.thumbnailURL ?? playlist?.thumbnailURL { + ThumbnailView(url: url) + .frame(width: 60, height: 30) + .clipShape(RoundedRectangle(cornerRadius: 2)) + } Text(label) .font(.headline)