mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-21 05:43:32 -07:00
Support tracker mirrors in torrent creator
This commit is contained in:
parent
9c7807ded4
commit
025f4f9737
1 changed files with 6 additions and 1 deletions
|
@ -113,8 +113,13 @@ void TorrentCreatorThread::run() {
|
|||
foreach (const QString &seed, url_seeds) {
|
||||
t.add_url_seed(seed.trimmed().toStdString());
|
||||
}
|
||||
qint32 tier = 0;
|
||||
foreach (const QString &tracker, trackers) {
|
||||
t.add_tracker(tracker.trimmed().toStdString());
|
||||
if (tracker.isEmpty()) {
|
||||
++tier;
|
||||
continue;
|
||||
}
|
||||
t.add_tracker(tracker.trimmed().toStdString(), tier);
|
||||
}
|
||||
if (abort) return;
|
||||
// calculate the hash for all pieces
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue