tangled
alpha
login
or
join now
modamo.xyz
/
biook
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
Check if new bio is actually different
modamo-gh
1 month ago
22a89f27
c7e59573
options
unified
split
Changed files
+1
-1
script.ts
+1
-1
script.ts
···
94
94
`Currently Reading\n📚\n${formattedCurrentlyReading}\n📚`;
95
95
}
96
96
97
97
-
if (newBio.length <= 256) {
97
97
+
if (newBio.length <= 256 && newBio !== bio) {
98
98
await agent.upsertProfile((p) => {
99
99
return { ...p, description: newBio };
100
100
});