mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 10:16:00 +03:00
- Fixed possible issue in tracker addition
This commit is contained in:
parent
956f97f6d6
commit
be934837e5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue