this repo has no description
0
fork

Configure Feed

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

fix

alice 3e1a857a c6cd44a3

+2 -2
+2 -2
background.js
··· 77 77 if (!response.headers.get("Content-Type")?.includes("text/plain")) { 78 78 throw new Error("Invalid Content-Type") 79 79 } 80 - const data = await response.json() 81 - return data.did && isValidDID(data.did) ? data.did : null 80 + const data = await response.text() 81 + return data.did && isValidDID(data) ? data : null 82 82 } catch (error) { 83 83 return null 84 84 }