mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-18 07:41:55 +00:00
Fix #2171 : Add Peer dialog stops responding if empty or invalid values entered
This commit is contained in:
parent
610cd7dd33
commit
e5f56e2fdd
1 changed files with 12 additions and 11 deletions
|
@ -386,6 +386,7 @@ class PeersTab(Tab):
|
|||
response = peer_dialog.run()
|
||||
if response:
|
||||
value = txt_ip.get_text()
|
||||
if value and ':' in value:
|
||||
if ']' in value:
|
||||
#ipv6
|
||||
ip = value.split("]")[0][1:]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue