mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-22 06:22:41 +00:00
fix name skipper ws issue
This commit is contained in:
parent
f2867347fe
commit
caa5bfc58d
1 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ namespace FileSkippers
|
|||
s = s.RemoveFt();
|
||||
s = s.Replace(ignore, " ");
|
||||
s = s.ReplaceInvalidChars(' ', false, removeSlash);
|
||||
s = s.RemoveConsecutiveWs();
|
||||
s = s.RemoveConsecutiveWs().Trim();
|
||||
return s;
|
||||
}
|
||||
|
||||
|
@ -117,7 +117,7 @@ namespace FileSkippers
|
|||
s = s.RemoveFt();
|
||||
s = s.Replace(ignore, " ");
|
||||
s = s.ReplaceInvalidChars(' ', false, removeSlash);
|
||||
s = s.RemoveConsecutiveWs();
|
||||
s = s.RemoveConsecutiveWs().Trim();
|
||||
return s;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue