aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Library/LibraryManager.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
index b632792f6..59ae9b734 100644
--- a/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
+++ b/MediaBrowser.Server.Implementations/Library/LibraryManager.cs
@@ -703,7 +703,21 @@ namespace MediaBrowser.Server.Implementations.Library
var validFilename = FileSystem.GetValidFilename(name);
- var key = Path.Combine(path, validFilename);
+ string subFolderPrefix = null;
+
+ if (typeof(T) == typeof(Person) && ConfigurationManager.Configuration.EnablePeoplePrefixSubFolders)
+ {
+ subFolderPrefix = validFilename.Substring(0, 1);
+
+ if (string.IsNullOrWhiteSpace(subFolderPrefix))
+ {
+ subFolderPrefix = "0";
+ }
+ }
+
+ var key = string.IsNullOrEmpty(subFolderPrefix) ?
+ Path.Combine(path, validFilename) :
+ Path.Combine(path, subFolderPrefix, validFilename);
BaseItem obj;