浏览代码

fix people names ending with a period

Luke Pulverenti 9 年之前
父节点
当前提交
68ae463381
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      MediaBrowser.Server.Implementations/Library/LibraryManager.cs

+ 4 - 1
MediaBrowser.Server.Implementations/Library/LibraryManager.cs

@@ -909,7 +909,10 @@ namespace MediaBrowser.Server.Implementations.Library
                 throw new ArgumentNullException("name");
             }
 
-            var validFilename = _fileSystem.GetValidFilename(name).Trim();
+            // Trim the period at the end because windows will have a hard time with that
+            var validFilename = _fileSystem.GetValidFilename(name)
+                .Trim()
+                .TrimEnd('.');
 
             string subFolderPrefix = null;