this repo has no description
0
fork

Configure Feed

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

fix deletion

alice 4bd2ac11 a0de338c

+3 -5
+3 -5
src/label.ts
··· 37 37 return set; 38 38 }, new Set<string>()); 39 39 40 - if (rkey.includes(DELETE)) { 41 - const randomHouse = HOUSES[Math.floor(Math.random() * HOUSES.length)]; 42 - await server 43 - .createLabels({ uri: did }, { negate: [randomHouse] }) 40 + if (rkey.includes(DELETE)) { await server 41 + .createLabels({ uri: did }, { negate: [...labels] }) 44 42 .catch((err) => { 45 43 console.log(err); 46 44 }) 47 - .then(() => console.log(`Deleted label ${randomHouse} for ${did}`)); 45 + .then(() => console.log(`Deleted labels for ${did}`)); 48 46 } else { 49 47 const randomHouse = HOUSES[Math.floor(Math.random() * HOUSES.length)]; 50 48 await server