Unwrapped GetFileNameWithoutExtension

This commit is contained in:
Erwin de Haan
2019-01-26 23:23:43 +01:00
parent b9a111432a
commit 450f246f95
5 changed files with 9 additions and 9 deletions

View File

@@ -2509,7 +2509,7 @@ namespace MediaBrowser.Controller.Entities
if (string.IsNullOrEmpty(Name) && !string.IsNullOrEmpty(Path))
{
Name = FileSystem.GetFileNameWithoutExtension(Path);
Name = System.IO.Path.GetFileNameWithoutExtension(Path);
hasChanges = true;
}