I have a movies category which is enabled for sorting with the following sort string:
Code: Select all
%dn/%title (%y).%ext
Jobs are being extracted to /movies/Original.Job.Name/_UNPACK_Original.Job.Name
In my Kodi player, when I view a directory listing of /movies, it hides directories which start with _UNPACK_ because I have set it to ignore these.
The issue is, when sorting is turned on, jobs are unpacked to /movies/Original.Job.Name/_UNPACK_Movie.Job.Name so the directory Original.Job.Name shows in the Kodi directory listing, even when it hasn't finished downloading. When I go into this directory, it is empty because _UNPACK_Movie.Job.Name is ignored by Kodi. However, I don't want to see Original.Job.Name listed until it's actually downloaded and ready with a media file inside it.
If I turn sorting off, this is ideal, as jobs are extracted to /movies/_UNPACK_Original.Job.Name and it is absent from Kodi's directory listing as the _UNPACK_ is present. This is how SABnzbd 2.0.2 behaved even with sorting turned on.
In 2.3.3 with sorting enabled, is there a way to unpack to /movies/_UNPACK_Original.Job.Name instead of /movies/Original.Job.Name/_UNPACK_Original.Job.Name ?
Thanks!