Skip to content

Commit

Permalink
fix name skipper ws issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fiso64 committed Oct 7, 2024
1 parent f286734 commit caa5bfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions slsk-batchdl/FileSkipper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private string Preprocess(string s, bool removeSlash)
s = s.RemoveFt();
s = s.Replace(ignore, " ");
s = s.ReplaceInvalidChars(' ', false, removeSlash);
s = s.RemoveConsecutiveWs();
s = s.RemoveConsecutiveWs().Trim();
return s;
}

Expand Down Expand Up @@ -117,7 +117,7 @@ private string Preprocess(string s, bool removeSlash)
s = s.RemoveFt();
s = s.Replace(ignore, " ");
s = s.ReplaceInvalidChars(' ', false, removeSlash);
s = s.RemoveConsecutiveWs();
s = s.RemoveConsecutiveWs().Trim();
return s;
}

Expand Down

0 comments on commit caa5bfc

Please sign in to comment.