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 turnstiles and pray

+5 -2
+4 -1
src/components/overlays/OverlayDisplay.tsx
··· 20 20 function TurnstileInteractive() { 21 21 const { t } = useTranslation(); 22 22 const [show, setShow] = useState(false); 23 - getTurnstile(); 23 + 24 + useEffect(() => { 25 + getTurnstile(); 26 + }, []); 24 27 25 28 // this may not rerender with different dom structure, must be exactly the same always 26 29 return (
+1 -1
src/stores/turnstile/index.tsx
··· 101 101 isInPopout?: boolean; 102 102 onUpdateShow?: (show: boolean) => void; 103 103 }) { 104 - const siteKey = conf().TURNSTILE_KEY; 104 + const siteKey = conf().TURNSTILE_KEY?.toString(); 105 105 const idRef = useRef<string | null>(null); 106 106 const setTurnstile = useTurnstileStore((s) => s.setTurnstile); 107 107 const processToken = useTurnstileStore((s) => s.processToken);