Skip to content

Commit

Permalink
bug53 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
bubuntoid authored Nov 25, 2021
1 parent eb1321a commit 2f10c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ethereal.Application/Extensions/StringExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static string RemoveTimespan(this string str)

public static string RemoveIllegalCharacters(this string str)
{
var invalid = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars());
var invalid = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars()) + "\"";
return invalid.Aggregate(str, (current, c) => current.Replace(c.ToString(), string.Empty));
}
}
Expand Down

0 comments on commit 2f10c52

Please sign in to comment.