handy online tools for AT Protocol boat.kelinci.net
atproto bluesky atcute typescript solidjs
20
fork

Configure Feed

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

fix: incorrect service check

Mary d817dbca 40f6cd9c

+2 -2
+1 -1
src/views/blob/blob-export.tsx
··· 275 275 const input = ev.currentTarget; 276 276 const value = input.value; 277 277 278 - if (value !== '' && isServiceUrlString(value)) { 278 + if (value !== '' && !isServiceUrlString(value)) { 279 279 input.setCustomValidity('Must be a valid service URL'); 280 280 } else { 281 281 input.setCustomValidity('');
+1 -1
src/views/repository/repo-export.tsx
··· 201 201 const input = ev.currentTarget; 202 202 const value = input.value; 203 203 204 - if (value !== '' && isServiceUrlString(value)) { 204 + if (value !== '' && !isServiceUrlString(value)) { 205 205 input.setCustomValidity('Must be a valid service URL'); 206 206 } else { 207 207 input.setCustomValidity('');