diff --git a/src/gui/properties/propertieswidget.cpp b/src/gui/properties/propertieswidget.cpp index 35d3fd234..09a867a0d 100644 --- a/src/gui/properties/propertieswidget.cpp +++ b/src/gui/properties/propertieswidget.cpp @@ -600,7 +600,7 @@ QString PropertiesWidget::getFullPath(const QModelIndex &index) const if (m_propListModel->itemType(index) == TorrentContentModelItem::FileType) { const int fileIdx = m_propListModel->getFileIndex(index); - const QString filename {m_torrent->filePath(fileIdx)}; + const QString filename {m_torrent->actualFilePath(fileIdx)}; const QString fullPath {Utils::Fs::expandPath(saveDir.absoluteFilePath(filename))}; return fullPath; }