mirror of
https://github.com/Radarr/Radarr
synced 2025-02-25 15:43:08 +00:00
Remove - as replacement for :
This commit is contained in:
parent
4263808360
commit
6d2f81e3ed
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ public static string CleanFileName(string name, bool replace = true)
|
|||
{
|
||||
string result = name;
|
||||
string[] badCharacters = { "\\", "/", "<", ">", "?", "*", ":", "|", "\"" };
|
||||
string[] goodCharacters = { "+", "+", "", "", "!", "-", "-", "", "" };
|
||||
string[] goodCharacters = { "+", "+", "", "", "!", "-", "", "", "" };
|
||||
|
||||
for (int i = 0; i < badCharacters.Length; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue