mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 11:38:50 -07:00
- Skip file checking in "start seeding immediately after torrent creation" feature (libtorrent v0.15 only)
This commit is contained in:
parent
d9817795ed
commit
fe91599eb4
1 changed files with 42 additions and 38 deletions
|
@ -199,6 +199,10 @@ void createtorrent::handleCreationSuccess(QString path, const char* branch_path)
|
|||
}
|
||||
QString hash = misc::toQString(t->info_hash());
|
||||
TorrentTempData::setSavePath(hash, QString(branch_path));
|
||||
#ifdef LIBTORRENT_0_15
|
||||
// Enable seeding mode (do not recheck the files)
|
||||
TorrentTempData::setSeedingMode(hash, true);
|
||||
#endif
|
||||
emit torrent_to_seed(path);
|
||||
}
|
||||
QMessageBox::information(0, tr("Torrent creation"), tr("Torrent was created successfully:")+" "+path);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue