From 3f8d4350064aa9ed14aff17229d7c234f9086f3b Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 11 Dec 2016 15:35:52 +0100 Subject: [PATCH] fix the space usage in a user name, at file creation --- Yavsc/Helpers/FileSystemHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Yavsc/Helpers/FileSystemHelpers.cs b/Yavsc/Helpers/FileSystemHelpers.cs index 8ef9cd40..f4ec2aa2 100644 --- a/Yavsc/Helpers/FileSystemHelpers.cs +++ b/Yavsc/Helpers/FileSystemHelpers.cs @@ -26,7 +26,7 @@ namespace Yavsc.Helpers return di; } - static char[] ValidChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_~.".ToCharArray(); + static char[] ValidChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_~. ".ToCharArray(); public static bool IsValidDirectoryName(this string name) {