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 InfoButton.tsx

Pas 050c4cc3 6331e69a

+10 -1
+10 -1
src/components/player/internals/InfoButton.tsx
··· 33 33 return null; 34 34 } 35 35 36 + // Don't render button if meta, tmdbId, or type is missing/invalid 37 + if ( 38 + !meta?.tmdbId || 39 + !meta.type || 40 + (meta.type !== "movie" && meta.type !== "show") 41 + ) { 42 + return null; 43 + } 44 + 36 45 return ( 37 46 <VideoPlayerButton 38 47 icon={Icons.CIRCLE_QUESTION} 39 48 iconSizeClass="text-base" 40 - className="p-2 !-mr-2" 49 + className="p-2 !-mr-2 relative z-10" 41 50 onClick={handleClick} 42 51 /> 43 52 );