Fix regression in reading config

This commit is contained in:
Chris R 2015-08-14 09:33:02 -07:00
parent c7535f127c
commit 43ebf710ab
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ namespace Microsoft.AspNet.Server.Kestrel
public void Initialize(IConfiguration configuration)
{
var urls = configuration["server.urls"];
if (!string.IsNullOrEmpty(urls))
if (string.IsNullOrEmpty(urls))
{
urls = "http://+:5000/";
}