diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2019-11-11 02:24:05 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2019-11-21 21:55:10 +0900 |
| commit | b1f9b03b17fd0930da5913d14ec5e7a4ed8ca6af (patch) | |
| tree | 7ebd85a689e3e4a6ab7a1461b3f636e1a0024280 /Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs | |
| parent | f3ca37e523bcfc52bbc6527d195d389f7ee053c8 (diff) | |
rename some missed variables and fix warnings
Diffstat (limited to 'Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs b/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs index fe705cbe2..2bd1b4361 100644 --- a/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs +++ b/Emby.Server.Implementations/Configuration/ServerConfigurationManager.cs @@ -91,9 +91,9 @@ namespace Emby.Server.Implementations.Configuration { var encodingConfig = this.GetConfiguration<EncodingOptions>("encoding"); - ((ServerApplicationPaths)ApplicationPaths).TranscodePath = string.IsNullOrEmpty(encodingConfig.TranscodingTempPath) ? + ((ServerApplicationPaths)ApplicationPaths).TranscodePath = string.IsNullOrEmpty(encodingConfig.TranscodePath) ? null : - Path.Combine(encodingConfig.TranscodingTempPath, "transcodes"); + Path.Combine(encodingConfig.TranscodePath, "transcodes"); } protected override void OnNamedConfigurationUpdated(string key, object configuration) |
