diff --git a/util/Server/Program.cs b/util/Server/Program.cs index 9a87162c08..61eaab7a76 100644 --- a/util/Server/Program.cs +++ b/util/Server/Program.cs @@ -24,7 +24,7 @@ namespace Bit.Server .ConfigureKestrel((context, options) => { }); var contentRoot = config.GetValue("contentRoot"); - if (string.IsNullOrWhiteSpace(contentRoot)) + if (!string.IsNullOrWhiteSpace(contentRoot)) { builder.UseContentRoot(contentRoot); }