I added a custom tv show in trakt linked to thetvdb.com. Danish name is Et ton cash and I added English info A Ton of Cash and trakt synced up at which point I could find the show in nzbdrone. However, when it searches for the show on oznzb I get the following log:
MissingEpisodeSearchService Episode search completed. 0 reports downloaded. 11:24 AM
DownloadDecisionMaker Processing 3 reports 11:24 AM
FetchFeedService Finished searching OZnzb.com for [A Ton of Cash : S01E09]. Found 3 11:24 AM
Filename on oznzb is Et Ton Cash S01E09 DANiSH HDTV x264-SKANK
Is this because oznzb is using the Foreign category for this show? I did try to trick oznzb by adding it to both the SD and Foreign category but it changed nothing. Is there a way to fix it?
I am having a similar issue with Paradise Hotel (DK) but get this log (this also comes up in nzbdrone and oznzb so it is on trakt):
MissingEpisodeSearchService Episode search completed. 0 reports downloaded. 11:31 AM
DownloadDecisionMaker No reports found 11:31 AM
FetchFeedService Finished searching OZnzb.com for [Paradise Hotel (DK) : S10E52]. Found 0
The show is on oznzb with filename format Paradise Hotel S10E52 DANiSH PREAiR WEBRiP-RAPiDCOWS
Probably, drone only searches HD and SD categories. Currently there is no way to select the categories on a per index basis (not every indexer uses the same qualities), but its on Trello: https://trello.com/c/s1sm6geQ/207-newznab-issue-with-categories
I spotted that other thread, thought this might be a bit different since it seems to find et ton cash when searching oznzb but just doesn’t download it whereas paradise hotel isn’t found at all.
I will patiently wait for this to be added. Just a thought, many foreign releases do not have fakes, passworded etc, so maybe searching a raw indexer would be a quick fix until a more robust solution is created?
Not really, the API for RAW indexers are pretty rough and it would be more work than doing it “properly”. Some work is going on around indexers right now which should make implementing this easier.
Fair enough, just wanted a quick n dirty fix to get this box all finished but properly is better If you need assistance with the different categories per indexers to make it easier for you to code I am willing to help in any way I can.
If you want quick and dirty open up the sqlite DB and update the Settings column in the Indexers table for oznab to include their foreign category, the settings are JSON:
{
"url": "https://www.oznzb.com",
"categories": [
5030,
5040
]
}
Awesome! Hopefully this works, what is the name of the db file? I have tried using sqlite browser to open the ones that looked like it but nothing showed up.
nzbdrone.db its in drone’s AppData Directory (system - info)
Ok, I have edited it through wordpad and added a line with 5020, for oznzb categories
Now when I try to open nzbdrone I get TinyIoCResolutionException:Unable to re3solve type: NzbDrone.Core.Datastore.DbFactory.
It should look like:
{
"url": "https://www.oznzb.com",
"categories": [
5020,
5030,
5040
]
}
(The comma has to follow unless its the last line in the array, otherwise it should be on the previous line). I don’t see how wordpad would work, use a proper sqlite application.
Done that, used a proper application. Still didnt work unfortunately.