diff --git a/services/web-ui/public/screens-library.jsx b/services/web-ui/public/screens-library.jsx index 4bb4223..5e3655b 100644 --- a/services/web-ui/public/screens-library.jsx +++ b/services/web-ui/public/screens-library.jsx @@ -138,7 +138,7 @@ function AssetCard({ asset, onOpen }) { const handleMouseEnter = function() { timerRef.current = setTimeout(function() { setHovered(true); - if (!hoverStream && (asset.status === 'ready' || asset.status === 'live')) { + if (!hoverStream) { window.ZAMPP_API.fetch('/assets/' + asset.id + '/stream') .then(function(r) { if (r && r.url) setHoverStream(r); }) .catch(function() {});