tangled
alpha
login
or
join now
flo-bit.dev
/
blento
your personal website on atproto - mirror
blento.app
20
fork
atom
overview
issues
pulls
pipelines
why dis not working???
Florian
1 week ago
94508eac
33dc7c19
+3
-1
1 changed file
expand all
collapse all
unified
split
src
lib
cards
SpecialCards
UpdatedBlentos
index.ts
+3
-1
src/lib/cards/SpecialCards/UpdatedBlentos/index.ts
···
41
}
42
}
43
44
-
const result = [...(await Promise.all(profiles)), ...existingUsersArray];
0
0
45
46
if (cache) {
47
await cache?.put('updatedBlentos', JSON.stringify(result));
···
41
}
42
}
43
44
+
const result = [...(await Promise.all(profiles)), ...existingUsersArray].filter(
45
+
(v) => v && v.handle !== 'handle.invalid'
46
+
);
47
48
if (cache) {
49
await cache?.put('updatedBlentos', JSON.stringify(result));