diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index 9640e31bd..4522580d6 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -532,7 +532,7 @@ class Torrent: parts = host.split(".") if len(parts) > 2: - if parts[-2] in ("co", "com"): + if parts[-2] in ("co", "com", "net", "org"): host = ".".join(parts[-3:]) else: host = ".".join(parts[-2:])