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.

Revert "remove slash on the end 😭"

This reverts commit bd2fa442f6e8acfd2517046312940b63c8191dd2.

Pas 2ca64a6b a026ed43

+1 -2
+1 -2
src/pages/parts/settings/ConnectionsPart.tsx
··· 57 57 58 58 const changeItem = useCallback( 59 59 (index: number, val: string) => { 60 - const cleanedUrl = val.replace(/\/+$/, ""); 61 60 setProxyUrls((s) => [ 62 61 ...(s ?? []).map((v, i) => { 63 62 if (i !== index) return v; 64 - return cleanedUrl; 63 + return val; 65 64 }), 66 65 ]); 67 66 },