add startup null check

pull/702/head
Luke Pulverenti 9 years ago
parent 6c790b8e2f
commit a23144726e

@ -152,7 +152,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
{
var directory = Path.GetDirectoryName(FFMpegPath);
if (FileSystem.ContainsSubPath(ConfigurationManager.ApplicationPaths.ProgramDataPath, directory))
if (!string.IsNullOrWhiteSpace(directory) && FileSystem.ContainsSubPath(ConfigurationManager.ApplicationPaths.ProgramDataPath, directory))
{
await new FontConfigLoader(_httpClient, ConfigurationManager.ApplicationPaths, _logger, _zipClient,
FileSystem).DownloadFonts(directory).ConfigureAwait(false);

Loading…
Cancel
Save