From 165712c6d1b35f26be488e25008f6e97a8847697 Mon Sep 17 00:00:00 2001 From: the-rarbg <136214747+the-rarbg@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:40:59 +0530 Subject: [PATCH 1/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b9a2ef..3bf50b5 100755 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ # PM2 Deployment ``` +npm build pm2 start npm --name prod -- run "start" ``` # For DEV @@ -32,4 +33,4 @@ npm run dev - [ ] Add a bookmark page to store the user's favorite movies and tv shows - [ ] Add the video playing feature when the user hover over the card and play the video -- [ ] Add authentication so that the user can sign up and log in to save their favorite movies and tv shows permanently \ No newline at end of file +- [ ] Add authentication so that the user can sign up and log in to save their favorite movies and tv shows permanently From 985e11cbea382e45a27e856193a2eff2f470fa2d Mon Sep 17 00:00:00 2001 From: the-rarbg <136214747+the-rarbg@users.noreply.github.com> Date: Sat, 17 Feb 2024 12:41:32 +0530 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bf50b5..2eb99f3 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ # PM2 Deployment ``` -npm build +npm run build pm2 start npm --name prod -- run "start" ``` # For DEV From f0a7a9219ac164466fab34c916c6729ece5585bc Mon Sep 17 00:00:00 2001 From: "Mr.4x3" Date: Sat, 29 Jun 2024 05:24:27 +0000 Subject: [PATCH 3/4] Fix --- service/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/service.js b/service/service.js index d44f417..bde6b47 100644 --- a/service/service.js +++ b/service/service.js @@ -1,5 +1,5 @@ import axios from "axios"; -export const API_BASE = 'https://t-rb.org'; +export const API_BASE = 'https://therarbg.to'; //const API_BASE = 'https://therarbg.com'; let token; From 3ecf666c3c3674ce9e41da525ead7180d1981628 Mon Sep 17 00:00:00 2001 From: "Mr.4x3" Date: Sat, 29 Jun 2024 05:49:51 +0000 Subject: [PATCH 4/4] fix issue --- pages/post-detail/[id]/[slug].js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pages/post-detail/[id]/[slug].js b/pages/post-detail/[id]/[slug].js index 7c14ef0..9e76201 100644 --- a/pages/post-detail/[id]/[slug].js +++ b/pages/post-detail/[id]/[slug].js @@ -35,9 +35,8 @@ const Details = () => { let temp = '&tr=' let tracker = '' trackers.map(item => { - tracker = tracker + temp + item + tracker = tracker + temp + item }) - const router = useRouter() let id let slug @@ -65,7 +64,7 @@ const Details = () => { .then(res => { setLoader(false) - let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${trackers}` + let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${tracker}` let url_t = `https://m2t.mirrorbay.org/info-hash/${res?.data?.info_hash}/${res?.data?.name}/?apikey=therarbg` setMagnateDownload(url) setTorrentDownload(url_t)