mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 10:16:00 +03:00
Use respective subcategory for "watched" torrents
Assign respective Subcategory of configured Category to torrents if Automatic Torrent Management Mode is set for Watched folder. PR #15603.
This commit is contained in:
parent
090199f9de
commit
4f20769a6c
1 changed files with 18 additions and 2 deletions
|
@ -504,8 +504,16 @@ void TorrentFilesWatcher::Worker::processFolder(const QString &path, const QStri
|
|||
if (path != watchedFolderPath)
|
||||
{
|
||||
const QString subdirPath = watchedDir.relativeFilePath(path);
|
||||
if (addTorrentParams.useAutoTMM)
|
||||
{
|
||||
addTorrentParams.category = addTorrentParams.category.isEmpty()
|
||||
? subdirPath : (addTorrentParams.category + QLatin1Char('/') + subdirPath);
|
||||
}
|
||||
else
|
||||
{
|
||||
addTorrentParams.savePath = QDir::cleanPath(QDir(addTorrentParams.savePath).filePath(subdirPath));
|
||||
}
|
||||
}
|
||||
|
||||
if (filePath.endsWith(QLatin1String(".magnet"), Qt::CaseInsensitive))
|
||||
{
|
||||
|
@ -575,8 +583,16 @@ void TorrentFilesWatcher::Worker::processFailedTorrents()
|
|||
if (exactDirPath != dir.path())
|
||||
{
|
||||
const QString subdirPath = dir.relativeFilePath(exactDirPath);
|
||||
if (addTorrentParams.useAutoTMM)
|
||||
{
|
||||
addTorrentParams.category = addTorrentParams.category.isEmpty()
|
||||
? subdirPath : (addTorrentParams.category + QLatin1Char('/') + subdirPath);
|
||||
}
|
||||
else
|
||||
{
|
||||
addTorrentParams.savePath = QDir(addTorrentParams.savePath).filePath(subdirPath);
|
||||
}
|
||||
}
|
||||
|
||||
emit torrentFound(result.value(), addTorrentParams);
|
||||
Utils::Fs::forceRemove(torrentPath);
|
||||
|
|
Loading…
Reference in a new issue