Fix users with no profile record not being shown #7
1 changed files with 1 additions and 2 deletions
|
@ -132,10 +132,9 @@ const getDidsFromPDS = async (): Promise<At.Did[]> => {
|
||||||
const getAccountMetadata = async (
|
const getAccountMetadata = async (
|
||||||
did: `did:${string}:${string}`,
|
did: `did:${string}:${string}`,
|
||||||
) => {
|
) => {
|
||||||
// gonna assume self exists in the app.bsky.actor.profile
|
|
||||||
const account: AccountMetadata = {
|
const account: AccountMetadata = {
|
||||||
did: did,
|
did: did,
|
||||||
handle: "",
|
handle: "", // Guaranteed to be filled out later
|
||||||
displayName: "",
|
displayName: "",
|
||||||
avatarCid: null,
|
avatarCid: null,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue