rename some missed variables and fix warnings

This commit is contained in:
dkanada
2019-11-11 02:24:05 +09:00
parent f3ca37e523
commit b1f9b03b17
7 changed files with 17 additions and 21 deletions

View File

@@ -10,7 +10,7 @@ namespace Emby.Server.Implementations
/// </summary>
public class ServerApplicationPaths : BaseApplicationPaths, IServerApplicationPaths
{
private string _defaultTranscodingTempPath;
private string _defaultTranscodePath;
private string _transcodePath;
private string _internalMetadataPath;
@@ -107,7 +107,7 @@ namespace Emby.Server.Implementations
/// <value>The user configuration directory path.</value>
public string UserConfigurationDirectoryPath => Path.Combine(ConfigurationDirectoryPath, "users");
public string DefaultTranscodePath => _defaultTranscodingTempPath ?? (_defaultTranscodingTempPath = Path.Combine(ProgramDataPath, "transcodes"));
public string DefaultTranscodePath => _defaultTranscodePath ?? (_defaultTranscodePath = Path.Combine(ProgramDataPath, "transcodes"));
public string TranscodePath
{