Fix TS start time bug for transcoding
This commit is contained in:
parent
c7aef09983
commit
7a77a8915b
|
@ -587,6 +587,8 @@ struct EpisodeItemView: View {
|
|||
let rootVC = window?.rootViewController;
|
||||
let UIHostingcontroller: PreferenceUIHostingController = rootVC as! PreferenceUIHostingController;
|
||||
vc = UIHostingcontroller;
|
||||
}.introspectTabBarController { (UITabBarController) in
|
||||
UITabBarController.tabBar.isHidden = true
|
||||
}
|
||||
}.onAppear(perform: loadData)
|
||||
}
|
||||
|
|
|
@ -632,6 +632,8 @@ struct MovieItemView: View {
|
|||
let rootVC = window?.rootViewController;
|
||||
let UIHostingcontroller: PreferenceUIHostingController = rootVC as! PreferenceUIHostingController;
|
||||
vc = UIHostingcontroller;
|
||||
}.introspectTabBarController { (UITabBarController) in
|
||||
UITabBarController.tabBar.isHidden = false
|
||||
}
|
||||
}.onAppear(perform: loadData)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue