From b148a93a8fecd3f28e8eccafeeb65c96a5888659 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 27 Aug 2009 02:15:47 +0000 Subject: [PATCH] - Can now create trackerless torrents --- src/createtorrent_imp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/createtorrent_imp.cpp b/src/createtorrent_imp.cpp index 2354bc52a..5d8289b4e 100644 --- a/src/createtorrent_imp.cpp +++ b/src/createtorrent_imp.cpp @@ -165,11 +165,11 @@ void createtorrent::on_createButton_clicked(){ QMessageBox::critical(0, tr("No input path set"), tr("Please type an input path first")); return; } - QStringList trackers = allItems(trackers_list); + /*QStringList trackers = allItems(trackers_list); if(!trackers.size()){ QMessageBox::critical(0, tr("No tracker path set"), tr("Please set at least one tracker")); return; - } + }*/ QString destination = QFileDialog::getSaveFileName(this, tr("Select destination torrent file"), QDir::homePath(), tr("Torrent Files")+QString::fromUtf8(" (*.torrent)")); if(!destination.isEmpty()) { if(!destination.endsWith(QString::fromUtf8(".torrent")))