Browse Source

Don't rename file because of difference in path separator

PR #16317.
adaptive-webui-19844
Prince Gupta 3 years ago committed by GitHub
parent
commit
1d4071d6d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      src/base/bittorrent/torrentimpl.cpp

8
src/base/bittorrent/torrentimpl.cpp

@ -2039,10 +2039,16 @@ void TorrentImpl::manageIncompleteFiles() @@ -2039,10 +2039,16 @@ void TorrentImpl::manageIncompleteFiles()
return;
}
const lt::file_storage &nativeFiles = m_nativeHandle.torrent_file()->files();
for (int i = 0; i < filesCount(); ++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))
{
const QString wantedPath = path + QB_EXT;

Loading…
Cancel
Save