allow creation of torrents without trackers
This commit is contained in:
parent
3d1cd9bf00
commit
1ae6dbf871
|
@ -7,6 +7,7 @@ Deluge 0.5.7 (xx November 2007)
|
||||||
* Fix ratio bugs (hopefully for the last time)
|
* Fix ratio bugs (hopefully for the last time)
|
||||||
* Add preference to only show file selection popup if torrent has multiple files
|
* Add preference to only show file selection popup if torrent has multiple files
|
||||||
* Fix pause all and resume all bugs
|
* Fix pause all and resume all bugs
|
||||||
|
* Allow torrent creation with no trackers
|
||||||
* Scheduler plugin revamp by Ben Klein
|
* Scheduler plugin revamp by Ben Klein
|
||||||
* Fix ETA from going backwards
|
* Fix ETA from going backwards
|
||||||
* UI warning on full HD - no longer just silently pauses torrents
|
* UI warning on full HD - no longer just silently pauses torrents
|
||||||
|
|
|
@ -134,10 +134,6 @@ class TorrentCreator:
|
||||||
(start, end) = trackers.get_bounds()
|
(start, end) = trackers.get_bounds()
|
||||||
trackers = trackers.get_text(start, end).strip()
|
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()
|
comments = self.glade.get_widget("comments_textview").get_buffer()
|
||||||
(start, end) = comments.get_bounds()
|
(start, end) = comments.get_bounds()
|
||||||
comments = comments.get_text(start, end).strip()
|
comments = comments.get_text(start, end).strip()
|
||||||
|
|
Loading…
Reference in New Issue