aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/ServerApplicationPaths.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2021-05-24 08:03:24 +0200
committercvium <clausvium@gmail.com>2021-05-24 08:03:24 +0200
commit1580bf5469bdd517c5451f213500cf8af235c5f1 (patch)
tree666fda46baac239ab9fb32e6377975a9d7e4a543 /Emby.Server.Implementations/ServerApplicationPaths.cs
parent42a2cc1747c7859c63334a7a45792e0af1410e1a (diff)
Fix property instantiation order
Diffstat (limited to 'Emby.Server.Implementations/ServerApplicationPaths.cs')
-rw-r--r--Emby.Server.Implementations/ServerApplicationPaths.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ServerApplicationPaths.cs b/Emby.Server.Implementations/ServerApplicationPaths.cs
index d5483bf40..6cf9a8f71 100644
--- a/Emby.Server.Implementations/ServerApplicationPaths.cs
+++ b/Emby.Server.Implementations/ServerApplicationPaths.cs
@@ -25,11 +25,11 @@ namespace Emby.Server.Implementations
cacheDirectoryPath,
webDirectoryPath)
{
- InternalMetadataPath = DefaultInternalMetadataPath;
// ProgramDataPath cannot change when the server is running, so cache these to avoid allocations.
RootFolderPath = Path.Join(ProgramDataPath, "root");
DefaultUserViewsPath = Path.Combine(RootFolderPath, "default");
DefaultInternalMetadataPath = Path.Combine(ProgramDataPath, "metadata");
+ InternalMetadataPath = DefaultInternalMetadataPath;
}
/// <summary>