mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
parent
47daf1b358
commit
1d4071d6d8
@ -2039,10 +2039,16 @@ void TorrentImpl::manageIncompleteFiles()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const lt::file_storage &nativeFiles = m_nativeHandle.torrent_file()->files();
|
||||||
|
|
||||||
for (int i = 0; i < filesCount(); ++i)
|
for (int i = 0; i < filesCount(); ++i)
|
||||||
{
|
{
|
||||||
const QString path = filePath(i);
|
const QString path = filePath(i);
|
||||||
const QString actualPath = actualFilePath(i);
|
|
||||||
|
const auto nativeIndex = m_torrentInfo.nativeIndexes().at(i);
|
||||||
|
const QString actualPath = Utils::Fs::toUniformPath(
|
||||||
|
QString::fromStdString(nativeFiles.file_path(nativeIndex)));
|
||||||
|
|
||||||
if (isAppendExtensionEnabled && (fileSize(i) > 0) && (fp[i] < 1))
|
if (isAppendExtensionEnabled && (fileSize(i) > 0) && (fp[i] < 1))
|
||||||
{
|
{
|
||||||
const QString wantedPath = path + QB_EXT;
|
const QString wantedPath = path + QB_EXT;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user