1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-10 13:54:23 +00:00

Ignore multiple sequential newlines in torrent creator

This commit is contained in:
Nick Tiskov 2013-03-03 20:04:17 +04:00
parent dec726c0ae
commit 964b321458

View File

@ -114,12 +114,17 @@ void TorrentCreatorThread::run() {
t.add_url_seed(seed.trimmed().toStdString()); t.add_url_seed(seed.trimmed().toStdString());
} }
qint32 tier = 0; qint32 tier = 0;
bool newline = false;
foreach (const QString &tracker, trackers) { foreach (const QString &tracker, trackers) {
if (tracker.isEmpty()) { if (tracker.isEmpty()) {
if (newline)
continue;
++tier; ++tier;
newline = true;
continue; continue;
} }
t.add_tracker(tracker.trimmed().toStdString(), tier); t.add_tracker(tracker.trimmed().toStdString(), tier);
newline = false;
} }
if (abort) return; if (abort) return;
// calculate the hash for all pieces // calculate the hash for all pieces