Fix TS start time bug for transcoding

This commit is contained in:
Aiden Vigue 2021-05-22 18:49:33 -04:00
parent c7aef09983
commit 7a77a8915b
2 changed files with 4 additions and 0 deletions

View File

@ -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)
}

View File

@ -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)
}