1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

- Fixed possible issue in tracker addition

This commit is contained in:
Christophe Dumez 2009-01-04 17:13:47 +00:00
parent 956f97f6d6
commit be934837e5

View File

@ -494,7 +494,7 @@ void properties::addTrackerList(QStringList myTrackers) {
// Add the trackers to the list
std::vector<announce_entry> trackers = h.trackers();
foreach(QString tracker, myTrackers) {
announce_entry new_tracker(misc::toString(tracker.toUtf8().data()));
announce_entry new_tracker(misc::toString(tracker.trimmed().toUtf8().data()));
new_tracker.tier = 0; // Will be fixed a bit later
trackers.push_back(new_tracker);
misc::fixTrackersTiers(trackers);