only replace tracker if handle is valid

This commit is contained in:
Marcos Pinto 2007-10-23 22:14:22 +00:00
parent f436cbff64
commit ac00fef1d4
1 changed files with 10 additions and 11 deletions

View File

@ -1779,18 +1779,17 @@ static PyObject *torrent_replace_trackers(PyObject *self, PyObject *args)
return NULL;
torrent_handle& h = M_torrents->at(index).handle;
std::vector<libtorrent::announce_entry> trackerlist;
std::istringstream trackers(tracker);
std::string line;
while (std::getline(trackers, line)) {
libtorrent::announce_entry a_entry(line);
trackerlist.push_back(a_entry);
if (h.is_valid()){
std::vector<libtorrent::announce_entry> trackerlist;
std::istringstream trackers(tracker);
std::string line;
while (std::getline(trackers, line)) {
libtorrent::announce_entry a_entry(line);
trackerlist.push_back(a_entry);
}
h.replace_trackers(trackerlist);
h.force_reannounce();
}
h.replace_trackers(trackerlist);
h.force_reannounce();
Py_INCREF(Py_None); return Py_None;
}
static PyObject *torrent_prioritize_files(PyObject *self, PyObject *args)