Merge pull request #6288 from lbryio/fix-livestream-offline-live-viewcount

fix incorrect variable being used to determine view state for live view count
This commit is contained in:
Dispatch 2021-06-19 12:06:56 -07:00 committed by GitHub
commit 697d67611b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,12 +37,12 @@ function FileViewCount(props: Props) {
return ( return (
<span className="media__subtitle--centered"> <span className="media__subtitle--centered">
{isLive && {livestream &&
__('%viewer_count% currently %viewer_state%', { __('%viewer_count% currently %viewer_state%', {
viewer_count: activeViewers === undefined ? '...' : activeViewers, viewer_count: activeViewers === undefined ? '...' : activeViewers,
viewer_state: isLive ? __('watching') : __('waiting'), viewer_state: isLive ? __('watching') : __('waiting'),
})} })}
{!isLive && {!livestream &&
activeViewers === undefined && activeViewers === undefined &&
(viewCount !== 1 ? __('%view_count% views', { view_count: formattedViewCount }) : __('1 view'))} (viewCount !== 1 ? __('%view_count% views', { view_count: formattedViewCount }) : __('1 view'))}
{!SIMPLE_SITE && <HelpLink href="https://lbry.com/faq/views" />} {!SIMPLE_SITE && <HelpLink href="https://lbry.com/faq/views" />}