After switch to v2: DownloadNzb() only uses report title

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 :frowning:

Thanks!

It was an intentional decision to ensure we have as much data as possible when sorting/renaming the episode after download and it also gives us more information to work with when checking the queue for existing episodes.

We have no plans to restore the previous functionality, if you need something similar you should consider using a pre-queue script for SAB.