From 1580bf5469bdd517c5451f213500cf8af235c5f1 Mon Sep 17 00:00:00 2001 From: cvium Date: Mon, 24 May 2021 08:03:24 +0200 Subject: [PATCH] Fix property instantiation order --- Emby.Server.Implementations/ServerApplicationPaths.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Emby.Server.Implementations/ServerApplicationPaths.cs b/Emby.Server.Implementations/ServerApplicationPaths.cs index d5483bf40b..6cf9a8f71e 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; } ///