pull/702/head
Luke Pulverenti 8 years ago
commit 386cf95220

@ -923,14 +923,14 @@ namespace MediaBrowser.Server.Implementations.Library
if (type == typeof(Person)) if (type == typeof(Person))
{ {
var subFolderIndex = 0; foreach (char c in validFilename)
{
while (!char.IsLetterOrDigit(validFilename[subFolderIndex])) if (char.IsLetterOrDigit(c))
{ {
subFolderIndex++; subFolderPrefix = c.ToString();
break;
}
} }
subFolderPrefix = validFilename.Substring(subFolderIndex, 1);
} }
var fullPath = string.IsNullOrEmpty(subFolderPrefix) ? var fullPath = string.IsNullOrEmpty(subFolderPrefix) ?

Loading…
Cancel
Save