1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-23 14:40:43 +00:00

documentation fix: create empty files on tr_torrent::start (#6340)

This commit is contained in:
Cœur 2023-12-06 06:39:24 +01:00 committed by GitHub
parent 56837517b0
commit 555b249322
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -886,8 +886,8 @@ void tr_torrent::on_metainfo_completed()
if (session->shouldFullyVerifyAddedTorrents() || !is_new_torrent_a_seed()) if (session->shouldFullyVerifyAddedTorrents() || !is_new_torrent_a_seed())
{ {
// Potentially, we are in `tr_torrentNew`, // Potentially, we are in `tr_torrent::init`,
// and we don't want any file created before `torrentStart` // and we don't want any file created before `tr_torrent::start`
// so we Verify but we don't Create files. // so we Verify but we don't Create files.
tr_torrentVerify(this); tr_torrentVerify(this);
} }