Fixes installer including some c# bits, fixes the hash bang to be back to normal
This commit is contained in:
@@ -59,7 +59,7 @@ namespace Umbraco.Core.Configuration
|
||||
{
|
||||
// fixme - this should live in its own independent file! NOT web.config!
|
||||
var value = ConfigurationManager.AppSettings["umbracoConfigurationStatus"];
|
||||
return SemVersion.TryParse(value, out var semver) ? semver : null;
|
||||
return value.IsNullOrWhiteSpace() ? null : SemVersion.TryParse(value, out var semver) ? semver : null;
|
||||
}
|
||||
catch
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user