Hide channel on list item if inside channel view

This commit is contained in:
Arkadiusz Fal 2022-12-13 20:11:47 +01:00
parent 05b4da9e25
commit e390bbcf09

View File

@ -67,7 +67,7 @@ struct VideoBanner: View {
HStack { HStack {
Group { Group {
if let video { if let video {
if !video.isLocal || video.localStreamIsRemoteURL { if !inChannelView, !video.isLocal || video.localStreamIsRemoteURL {
channelControl channelControl
} else { } else {
#if os(iOS) #if os(iOS)