From 8a086256722e6150b45791e86d0bc6d407146c28 Mon Sep 17 00:00:00 2001 From: real-zephex Date: Thu, 21 Mar 2024 19:19:54 +0530 Subject: fix: trying to fix the endpoints --- src/app/video/[animeId]/page.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/app/video') diff --git a/src/app/video/[animeId]/page.jsx b/src/app/video/[animeId]/page.jsx index 02f6197..2285657 100644 --- a/src/app/video/[animeId]/page.jsx +++ b/src/app/video/[animeId]/page.jsx @@ -48,7 +48,7 @@ export default async function Video({ params }) { async function getVideoLink(id) { const res = await fetch( - "https://anime-sensei-api.vercel.app/anime/gogoanime/watch/" + id + "https://dramalama-api.vercel.app/anime/gogoanime/watch/" + id ); const data = res.json(); return data; -- cgit v1.2.3