channel surf through AtmosphereConf talks
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

Link channel title to sp-vod viewer instead of raw pds.ls record

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+2 -1
+2 -1
public/index.html
··· 519 519 function showChannelInfo(ch, title, uri) { 520 520 channelNumber.textContent = 'CH ' + String(ch).padStart(2, '0'); 521 521 channelTitle.textContent = title; 522 - channelTitle.href = 'https://pds.ls/' + uri; 522 + const rkey = uri.split('/').pop(); 523 + channelTitle.href = 'https://sp-vod.pages.dev/stream.place/video/' + rkey; 523 524 channelOverlay.classList.add('visible'); 524 525 clearTimeout(overlayTimeout); 525 526 }