allow creation of torrents without trackers

This commit is contained in:
Marcos Pinto 2007-11-19 12:51:46 +00:00
parent 3d1cd9bf00
commit 1ae6dbf871
2 changed files with 1 additions and 4 deletions

View File

@ -7,6 +7,7 @@ Deluge 0.5.7 (xx November 2007)
* Fix ratio bugs (hopefully for the last time)
* Add preference to only show file selection popup if torrent has multiple files
* Fix pause all and resume all bugs
* Allow torrent creation with no trackers
* Scheduler plugin revamp by Ben Klein
* Fix ETA from going backwards
* UI warning on full HD - no longer just silently pauses torrents

View File

@ -134,10 +134,6 @@ class TorrentCreator:
(start, end) = trackers.get_bounds()
trackers = trackers.get_text(start, end).strip()
if trackers == "" or trackers == None:
deluge.dialogs.show_popup_warning(self.dialog, _("You must specify at least one tracker."))
return False
comments = self.glade.get_widget("comments_textview").get_buffer()
(start, end) = comments.get_bounds()
comments = comments.get_text(start, end).strip()