Browse Source

Ignore multiple sequential newlines in torrent creator

adaptive-webui-19844
Nick Tiskov 12 years ago
parent
commit
964b321458
  1. 5
      src/torrentcreator/torrentcreatorthread.cpp

5
src/torrentcreator/torrentcreatorthread.cpp

@ -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

Loading…
Cancel
Save