We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d09af1 commit b6efee5Copy full SHA for b6efee5
src/Models/Remote.cs
@@ -78,7 +78,7 @@ public bool TryGetVisitURL(out string url)
78
var match = REG_TO_VISIT_URL_CAPTURE().Match(URL);
79
if (match.Success)
80
{
81
- url = $"https://{match.Groups[1].Value}/{match.Groups[2].Value}";
+ url = $"http://{match.Groups[1].Value}/{match.Groups[2].Value}";
82
return true;
83
}
84
0 commit comments