You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
if (host.startsWith("https://")) {
46
51
host = host.substring(8);
47
52
}
48
53
if (host.startsWith("http://")) {
49
54
host = host.substring(7);
50
55
}
51
56
// Only do the check if the host has been set to localhost.
52
-
if (host != null && host.startsWith("localhost") && options.isUsePlainText()) {
57
+
if (host.startsWith("localhost") && options.isUsePlainText()) {
53
58
// Do a quick check to see if anything is actually running on the host.
0 commit comments