Skip to content

Commit 92421b6

Browse files
committed
fix: change URL https to http for wider scenarios
1 parent 3ced2b7 commit 92421b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Models/Remote.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public bool TryGetVisitURL(out string url)
7878
var match = REG_TO_VISIT_URL_CAPTURE().Match(URL);
7979
if (match.Success)
8080
{
81-
url = $"https://{match.Groups[1].Value}/{match.Groups[2].Value}";
81+
url = $"http://{match.Groups[1].Value}/{match.Groups[2].Value}";
8282
return true;
8383
}
8484

0 commit comments

Comments
 (0)