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) + ? '