- Thread starter
- #171
I updated the beta to try and pass the cookies from the rss request into the download request. I don't know of any good sites to test this on so I don't know if it works or not. If anyone knows of sites like this please let me know so I can test.
Give it a try at:
http://projects.c3o.com/mediaportal/plugins.beta.zip
this beta has the same trunc problems:
URL: http://btjunkie.org/torrent/Linkin-.../3774113425072257e5adfb5fe7ffcaa8b90fbd360566
inside the zip are the wrong temp11.torrent created by MP and the correct torrent by firefox
Your rss feed points at an html page instead of the actual torrent. See this post from mike.italy where he gives a great example:
https://forum.team-mediaportal.com/showpost.php?p=148096&postcount=160
We were able to fix this by uinsg a regular expression search and replace. See details in this post:
https://forum.team-mediaportal.com/showpost.php?p=148263&postcount=166
Your rss feed has links like this:
http://btjunkie.org/torrent/Family-.../3172de299402d55c42249f0db83d85335ffcc7d4f624
But you need this to get the torrent:
http://btjunkie.org/torrent/Family-...42249f0db83d85335ffcc7d4f624/download.torrent
Looks like all you have to do is append "/download.torrent" to the end of the link. Should be easy. I think this should do it:
pattern = <link>(?<url>.*)</link>
replacement = <link>${url}/download.torrent</link>