A small web tool for showing what Bluesky moderation labels are assigned to a profile blue.mackuba.eu/scanner/
4
fork

Configure Feed

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

handle error when post is not found

+5
+5
scanner.js
··· 145 145 } 146 146 147 147 let results = await Promise.all(batches); 148 + 149 + if (results.every(x => !x)) { 150 + throw '🚫 Post not found.'; 151 + } 152 + 148 153 return results.flatMap(x => x.labels).filter(x => (x.src != userDID)); 149 154 } 150 155