Bart39
Bart39
i could of course read your comment fully...
The new issue is that TRIM(LEADING ‘0’ FROM ..... will remove ALL leading zero’s. Some imdbid’s genuinely begin with 0 (as in stored value begins 00) E.g. https://www.imdb.com/title/tt0103262/
Will need to use something like `CASE WHEN m.imdbid like ‘00%’ then RIGHT(m.imdbid, LENGTH(m.imdbid) -1) ELSE TRIM(LEADING ‘0’ FROM m.imdbid) END AS imdbid`
not quite - releases.imdbid also has the leading zero so: `LEFT JOIN releases r USING (imdbid)` (line 317) will never match EDIT: the rest of the function also needs a...
For predb matching you need to have the predb info in your database. Start with https://github.com/nZEDb/nZEDb/wiki/Install-Guide:-Ubuntu-18.04#load-predb And then either maintain updates by running the import script daily or following the...
As @m0rse said, no sooner are some of the obfuscation methods discovered the release groups then change them - guarantee that they monitor what we and other indexers are doing
You have to say my name 3 times then I appear quicker....
"This same regex should capture UFC I think but it doesn't either:" its the ".+" in red bull race that breaks it for matching anything after it
Highly unlikely as that would require a huge amount of work but let's see what the other dev's think
pull requests must be made against the dev branch and not master - please recreate your pull request against the correct branch