User string.Empty instead of ""

Co-authored-by: Patrick Barron <18354464+barronpm@users.noreply.github.com>
pull/3480/head
Neil Burrows 4 years ago committed by GitHub
parent 4748df26b6
commit 6b532b3da5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -63,7 +63,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
_fileSystem = fileSystem;
_localization = localization;
_encodingHelperFactory = encodingHelperFactory;
_startupOptionFFmpegPath = config.GetValue<string>(Controller.Extensions.ConfigurationExtensions.FfmpegPathKey) ?? "";
_startupOptionFFmpegPath = config.GetValue<string>(Controller.Extensions.ConfigurationExtensions.FfmpegPathKey) ?? string.Empty;
}
private EncodingHelper EncodingHelper => _encodingHelperFactory.Value;

Loading…
Cancel
Save