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
41
}
42
42
}
43
43
44
44
-
const result = [...(await Promise.all(profiles)), ...existingUsersArray];
44
44
+
const result = [...(await Promise.all(profiles)), ...existingUsersArray].filter(
45
45
+
(v) => v && v.handle !== 'handle.invalid'
46
46
+
);
45
47
46
48
if (cache) {
47
49
await cache?.put('updatedBlentos', JSON.stringify(result));