diff --git a/MediaBrowser.Controller/Entities/User.cs b/MediaBrowser.Controller/Entities/User.cs index 849b9cfeec..690f976052 100644 --- a/MediaBrowser.Controller/Entities/User.cs +++ b/MediaBrowser.Controller/Entities/User.cs @@ -397,31 +397,6 @@ namespace MediaBrowser.Controller.Entities { _rootFolderPath = null; RootFolder = null; - - if (config.UseCustomLibrary) - { - CopyDefaultLibraryPathsIfNeeded(); - } - } - } - - /// - /// Copies the default library paths if needed. - /// - private void CopyDefaultLibraryPathsIfNeeded() - { - var userPath = RootFolderPath; - - var defaultPath = ConfigurationManager.ApplicationPaths.DefaultUserViewsPath; - - if (userPath.Equals(defaultPath, StringComparison.OrdinalIgnoreCase)) - { - return; - } - - if (!Directory.EnumerateFileSystemEntries(userPath, "*.lnk", SearchOption.AllDirectories).Any()) - { - FileSystem.CopyAll(defaultPath, userPath); } } }