diff --git a/public/assets/my.js b/public/assets/my.js index e3989aa..75d8319 100644 --- a/public/assets/my.js +++ b/public/assets/my.js @@ -1007,10 +1007,12 @@ let r = null; try { r = await (await fetch('/api/my/videos?orientation=landscape')).json(); } catch (e) {} if (!r || !r.ad) { - $('vidBox').innerHTML = '' + (r && r.status && r.status.left <= 0 - ? 'That is today\'s video set. Come back tomorrow.' - : r && r.allWatched ? 'You have watched every live video for today (each one pays once a day). New ones appear as members launch video campaigns.' - : 'No member videos are live right now. Check back when a campaign is running.') + ''; + // same done screen as Watch ads when the day's videos are finished (Marty, 2026-09-13) + const capHit = !!(r && r.status && r.status.left <= 0), allWatched = !!(r && r.allWatched); + $('vidBox').innerHTML = (capHit || allWatched) + ? '
✓Videos done for today' + (capHit ? 'That is today’s video set (' + r.status.count + ' watched). Fresh videos tomorrow.' : 'You have watched every live video for today; each one pays once a day. New ones appear as members launch video campaigns.') + '
' + : 'No member videos are live right now. Check back when a campaign is running.'; + if ($('vidStartBtn')) $('vidStartBtn').hidden = capHit || allWatched; $('vidBox').hidden = false; $('vidWrap').hidden = true; return; diff --git a/public/my.html b/public/my.html index 4a5bf6f..0bb4d7f 100644 --- a/public/my.html +++ b/public/my.html @@ -915,7 +915,7 @@ - +