Page 1 of 1

Don't add dash to name if no source is found

Posted: 07 Apr 2019, 20:49
by bobsage
This is how I have my current episode naming format. But if there is no source, I am left with a " - " at the end of the file name. Is there a way so if it detects no source, to remove the " - " at the end as well?

Code: Select all

{n} - {s00e00} - {t} - {Source}

Re: Don't add dash to name if no source is found

Posted: 07 Apr 2019, 21:00
by rednoah
This will do:

Code: Select all

{" - " + source}
The two parts will either succeed together, or fail together.

Re: Don't add dash to name if no source is found

Posted: 07 Apr 2019, 21:04
by bobsage
Thank you