all your fetch calls are mine

This commit is contained in:
amy 2024-11-04 07:23:24 +03:30
parent 80e902f9c1
commit ce9c0ea270
No known key found for this signature in database
9 changed files with 14 additions and 14 deletions

View file

@ -68,7 +68,7 @@ export default function Reviews() {
export const theImager = async (id: string): Promise<string> => (await fetch(`https://dc-lookup.mono.exhq.dev/v1/user/${id}`)
.then(res => res.json()).then(data => data.avatar.link).catch(() => "https://http.cat/status/100"));
.then(res => res.json()).then(data => "https://proxy.mono.exhq.dev/_/plain/"+data.avatar.link).catch(() => "https://http.cat/status/100"));
function SingleReview(props: NeoReview) {
const [imageSrc, setImageSrc] = createSignal("");