From f0fdcb6a6e6abfbd080e5e531da611f7a6fba558 Mon Sep 17 00:00:00 2001 From: Dan Peterson Date: Fri, 17 Dec 2021 09:23:49 -0600 Subject: [PATCH] Hotfix livestream datetime (#527) * Temporarily adjust upcoming buffer to 15 min + 5 min cache time * Make sure datetime is shown on regular claims --- ui/component/fileSubtitle/view.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/component/fileSubtitle/view.jsx b/ui/component/fileSubtitle/view.jsx index da0716edd..54acdabdc 100644 --- a/ui/component/fileSubtitle/view.jsx +++ b/ui/component/fileSubtitle/view.jsx @@ -13,12 +13,12 @@ type Props = { function FileSubtitle(props: Props) { const { uri, livestream = false, isLive = false } = props; - + const showDateTime = !livestream || (livestream && !isLive); return ( <>
- {livestream && !isLive && } + {showDateTime && }