Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Normal
-
Resolution: Fixed
-
Affects Version/s: 2.1.3
-
Fix Version/s: 2.2
-
Component/s: File Move & Rename
-
Labels:None
-
Environment:Windows 10
Description
The default file naming script contains:
$if($ne(%albumartist%,),$num(%tracknumber%,2) ,)
This will produce a file name beginning in "00 " if %tracknumber% is empty.
I believe the desired functionality should be:
$if($ne(%tracknumber%,),$num(%tracknumber%,2) ,)
Also, think about entering the default script with some carriage returns and tabs to make it easier to read.