From 5f33b8f753e60f3716b5236b376d24fad2f86fbe 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) {