aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/LibraryManager.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-11-10 16:23:03 -0500
committerGitHub <noreply@github.com>2017-11-10 16:23:03 -0500
commitb51ed9621fb1c98b891ce5f2fa6fa255a59ad6af (patch)
tree6ee8563d163fbc48d6c242a03e37d50819f56176 /Emby.Server.Implementations/Library/LibraryManager.cs
parente86cd223c6c79484f5c9ca825fac81c07a3c92cb (diff)
parent711f58808447765b51367cb4a60581f8b8bb65ff (diff)
Merge pull request #3011 from MediaBrowser/dev
3.2.36.7
Diffstat (limited to 'Emby.Server.Implementations/Library/LibraryManager.cs')
-rw-r--r--Emby.Server.Implementations/Library/LibraryManager.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Library/LibraryManager.cs b/Emby.Server.Implementations/Library/LibraryManager.cs
index bd8a09550..5eda986e1 100644
--- a/Emby.Server.Implementations/Library/LibraryManager.cs
+++ b/Emby.Server.Implementations/Library/LibraryManager.cs
@@ -709,6 +709,9 @@ namespace Emby.Server.Implementations.Library
var rootFolder = GetItemById(GetNewItemId(rootFolderPath, typeof(AggregateFolder))) as AggregateFolder ?? (AggregateFolder)ResolvePath(_fileSystem.GetDirectoryInfo(rootFolderPath));
+ // In case program data folder was moved
+ rootFolder.Path = rootFolderPath;
+
// Add in the plug-in folders
foreach (var child in PluginFolderCreators)
{
@@ -771,6 +774,9 @@ namespace Emby.Server.Implementations.Library
tmpItem = (UserRootFolder)ResolvePath(_fileSystem.GetDirectoryInfo(userRootPath));
}
+ // In case program data folder was moved
+ tmpItem.Path = userRootPath;
+
_userRootFolder = tmpItem;
}
}