pstream is dead; long live pstream taciturnaxolotl.github.io/pstream-ng/
1
fork

Configure Feed

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

Update SetupPart.tsx

Pas bf8e2504 22ddddfe

+3 -3
+3 -3
src/pages/parts/settings/SetupPart.tsx
··· 134 134 continue; 135 135 } 136 136 137 - const isVIPLink = Object.values(data.streams).some((link: any) => { 138 - if (typeof link === "string") { 139 - return link.toLowerCase().includes("vip"); 137 + const isVIPLink = Object.values(data.streams).some((stream: any) => { 138 + if (typeof stream === "object" && stream.download) { 139 + return stream.download.includes("/vip/"); 140 140 } 141 141 return false; 142 142 });