aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Entities/User.cs')
-rw-r--r--MediaBrowser.Controller/Entities/User.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/MediaBrowser.Controller/Entities/User.cs b/MediaBrowser.Controller/Entities/User.cs
index 849b9cfee..690f97605 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();
- }
- }
- }
-
- /// <summary>
- /// Copies the default library paths if needed.
- /// </summary>
- 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);
}
}
}