this repo has no description
0
fork

Configure Feed

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

it works

alice ef784271 3e1a857a

+2 -2
+2 -2
background.js
··· 69 69 } 70 70 } 71 71 72 - // Function to check for a DID in the well-known (not .well-known) location 72 + // Function to check for a DID in the well-known location 73 73 async function checkForDIDHTTPS(domain) { 74 74 try { 75 75 const response = await fetch(`https://${domain}/.well-known/atproto-did`) ··· 78 78 throw new Error("Invalid Content-Type") 79 79 } 80 80 const data = await response.text() 81 - return data.did && isValidDID(data) ? data : null 81 + return data && isValidDID(data) ? data : null 82 82 } catch (error) { 83 83 return null 84 84 }