this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

f

alice 6752841b 8c465e12

+4 -1
+4 -1
src/label.ts
··· 85 85 } 86 86 87 87 const { data } = await agent.getProfile({ actor: did }); 88 - if (!data) throw new Error('Profile not found'); 88 + if (!data) { 89 + console.log('OOPS: Profile not found and/or we could not fetch it'); 90 + return; 91 + } 89 92 90 93 const avatar = await prepareAvatar(data); 91 94 const prompt = createPrompt(data);