diff --git a/pkg/utils/dwelling.go b/pkg/utils/dwelling.go index 48fac2d..9847f3a 100644 --- a/pkg/utils/dwelling.go +++ b/pkg/utils/dwelling.go @@ -25,6 +25,8 @@ func NetworkType(host string) (string, string) { return "i2p", "http" } else if strings.Contains(host, "onion") { return "tor", "http" + } else if strings.Contains(host, "[300:") { + return "ygg", "http" } else { return "www", "https" }