Skip to content

Commit 2f10c52

Browse files
authored
bug53 (#54)
1 parent eb1321a commit 2f10c52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Ethereal.Application/Extensions/StringExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static string RemoveTimespan(this string str)
4444

4545
public static string RemoveIllegalCharacters(this string str)
4646
{
47-
var invalid = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars());
47+
var invalid = new string(Path.GetInvalidFileNameChars()) + new string(Path.GetInvalidPathChars()) + "\"";
4848
return invalid.Aggregate(str, (current, c) => current.Replace(c.ToString(), string.Empty));
4949
}
5050
}

0 commit comments

Comments
 (0)