mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-10 18:56:50 +02:00
Fixed https proxy for netstandard 1.3 and netstandard 2.0 (#85)
This commit is contained in:
@@ -37,7 +37,7 @@ namespace WireMock.Http
|
||||
public static bool TryExtractProtocolAndPort(string url, out string proto, out int port)
|
||||
{
|
||||
proto = null;
|
||||
port = -1;
|
||||
port = 0;
|
||||
|
||||
Match m = UrlDetailsRegex.Match(url);
|
||||
if (m.Success)
|
||||
|
||||
Reference in New Issue
Block a user