ETA for finished torrent is now 0 instead of Infinite (closes #583704)

Fix unicode issue in start seeding after torrent creation code
This commit is contained in:
Christophe Dumez
2010-05-21 11:25:30 +00:00
parent bdd8cbb1d8
commit 963d73af4e
3 changed files with 5 additions and 2 deletions

View File

@@ -199,7 +199,7 @@ void createtorrent::handleCreationSuccess(QString path, const char* branch_path)
return;
}
QString hash = misc::toQString(t->info_hash());
TorrentTempData::setSavePath(hash, QString(branch_path));
TorrentTempData::setSavePath(hash, QString::fromLocal8Bit(branch_path));
#ifdef LIBTORRENT_0_15
// Enable seeding mode (do not recheck the files)
TorrentTempData::setSeedingMode(hash, true);