From d889cf1f5781e5d9b446a280ce048e48a74d2aaa Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 4 Apr 2013 00:50:06 -0400 Subject: [PATCH] remove library copying when setting up a custom library. we'll add a separate button to do it later. --- MediaBrowser.Controller/Entities/User.cs | 25 ------------------------ 1 file changed, 25 deletions(-) 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); } } }