Compare commits

..

No commits in common. "master" and "dev" have entirely different histories.

3 changed files with 5 additions and 5 deletions

View file

@ -13,7 +13,6 @@
# PM2 Deployment
```
npm run build
pm2 start npm --name prod -- run "start"
```
# For DEV
@ -33,4 +32,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,8 +35,9 @@ 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
@ -64,7 +65,7 @@ const Details = () => {
.then(res => {
setLoader(false)
let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${tracker}`
let url = `magnet:?xt=urn:btih:${res?.data?.info_hash}&dn=${res?.data?.name}${trackers}`
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://therarbg.to';
export const API_BASE = 'https://t-rb.org';
//const API_BASE = 'https://therarbg.com';
let token;