aymene69 / stremio-jackett

Elevate your Stremio experience with seamless access to Jackett torrent links, effortlessly fetching torrents for your selected movies within the Stremio interface.
192 stars 35 forks source link

Cannot GET /<redacted>/all/2000/5000/undefined/CAMHD/manifest.json #21

Closed purple-emily closed 7 months ago

purple-emily commented 7 months ago
Cannot GET /<redacted>/https://<redacted>/<redacted>/all/2000/5000/undefined/CAMHD,BDRIP/manifest.json

Using Caddy as a reverse proxy:

@stremio-jacket-addon host <redacted>
handle @stremio-jacket-addon {
    reverse_proxy stremio-jacket-addon:3000
}

I can access the configure page but the manifest.json won't work.

I'm using Docker on a totally fresh installation.

Jackett is on the same host behind Caddy. Accessing both through a Cloudflare tunnel

aymene69 commented 7 months ago

You are using an outdated version of the addon

purple-emily commented 7 months ago

@aymene69 You are correct! That is hard to tell. Is the docker release up to date?

I figured it out by attaching to the container and cat package.json

root@b78b6109fb87:/app# cat package.json
{
        "type": "module",
        "name": "stremio-addon-jackett",
        "version": "1.0.0",
        "description": "Stremio Jackett Addon",
        "scripts": {
                "start": "node index.js"
        },
        "dependencies": {
                "buffer": "^6.0.3",
                "cors": "^2.8.5",
                "express": "^4.18.2",
                "node-fetch": "^3.3.2",
                "torrent2magnet-js": "^1.1.1",
                "xml2js": "^0.6.2"
        }
}
root@b78b6109fb87:/app# 

Which is different from your live repo. I'll attemp to pull it again and see if it updates. Thanks for a quick and speedy reply. I have no idea how you knew that so fast.

aymene69 commented 7 months ago

Yes, the new docker release is up to date. Make sure to delete the current image you have first before fetching the latest one

purple-emily commented 7 months ago

@aymene69 I swear I pulled it before it went live but clearly not. Great, I just deleted it and pulled and it's newer, as you said. Thanks for your help and the addon 👍🏻

aymene69 commented 7 months ago

No problem and thank you for using it

purple-emily commented 7 months ago

I see how you figured it out, very clever! The makeup of the URL has changed! Everything works great!! Thanks for the new release

aymene69 commented 7 months ago

Yup exactly! I changed it to a b64 one parameter to avoid the issue you just had,

You're welcome!