Compare commits

..

6 commits

Author SHA1 Message Date
the-rarbg
60de5a69c4
Merge pull request #81 from rcl-viveksharma/tracker_issue
Tracker issue
2024-06-29 11:29:56 +05:30
Mr.4x3
3ecf666c3c fix issue 2024-06-29 05:49:51 +00:00
Mr.4x3
f0a7a9219a Fix 2024-06-29 05:24:27 +00:00
the-rarbg
985e11cbea
Update README.md 2024-02-17 12:41:32 +05:30
the-rarbg
165712c6d1
Update README.md 2024-02-17 12:40:59 +05:30
Wizard
d8c31cf39f
Merge pull request #74 from the-rarbg/dev
Dev
2023-10-29 23:25:04 +05:30
3 changed files with 5 additions and 5 deletions

View file

@ -13,6 +13,7 @@
# PM2 Deployment
```
npm run 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
- [ ] Add authentication so that the user can sign up and log in to save their favorite movies and tv shows permanently

View file

@ -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)

View file

@ -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;