fix the space usage in a user name, at file creation

main
Paul Schneider 9 years ago
parent ad238a878f
commit 3f8d435006
1 changed files with 1 additions and 1 deletions

@ -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)
{

Loading…