this repo has no description

Check if new bio is actually different

Changed files
+1 -1
+1 -1
script.ts
··· 94 94 `Currently Reading\n📚\n${formattedCurrentlyReading}\n📚`; 95 95 } 96 96 97 - if (newBio.length <= 256) { 97 + if (newBio.length <= 256 && newBio !== bio) { 98 98 await agent.upsertProfile((p) => { 99 99 return { ...p, description: newBio }; 100 100 });