Hi,
after switching my whole nzb setup to linux I got Nzbdrone v2 running and realized one big difference compared to v1:
When episodes get queued in Sabnzbd, the release name of the index site is used.
In v1 before queuing an item it was auto renamed (possible through Sabnzbd API).
I tried to look into the code and found a major change:
The code changed from
bool success = provider.DownloadNzb(parseResult.NzbUrl, downloadTitle, recentEpisode);
to simply
downloadClient.DownloadNzb(remoteEpisode);
So my question is: is there any reason? Would it be possible to use FileNameBuilder.BuildFilename() to auto generate the title in RemoteEpisode?
As I am not so into C# it would be nice to have an answer, before I would try to provide a patch. I really need this feature back
Thanks!