Modify to use correct logic before creating directory

Address review comments.
This commit is contained in:
PloughPuff 2019-01-18 17:19:47 +00:00
parent 04d03c5cf9
commit 529d804414
1 changed files with 2 additions and 2 deletions

View File

@ -185,7 +185,7 @@ namespace Jellyfin.Server
}
}
if (string.IsNullOrEmpty(configDir))
if (!string.IsNullOrEmpty(configDir))
{
Directory.CreateDirectory(configDir);
}
@ -204,7 +204,7 @@ namespace Jellyfin.Server
}
}
if (string.IsNullOrEmpty(logDir))
if (!string.IsNullOrEmpty(logDir))
{
Directory.CreateDirectory(logDir);
}