Fixed https proxy for netstandard 1.3 and netstandard 2.0 (#85)

This commit is contained in:
Stef Heyenrath
2018-02-02 22:52:08 +01:00
parent 061eb93fd0
commit 361d40189b
19 changed files with 356 additions and 24 deletions

View File

@@ -157,7 +157,7 @@ namespace WireMock.Server
{
if (settings.Urls != null)
{
Urls = settings.Urls;
Urls = settings.Urls.Select(u => u.EndsWith("/") ? u : $"{u}/").ToArray();
}
else
{