mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-14 16:57:55 +00:00
Optimize check of paths in qbtsession.
This commit is contained in:
parent
3e979931d0
commit
a899209a01
@ -1774,14 +1774,16 @@ void QBtSession::addTorrentsFromScanFolder(QStringList &pathList) {
|
||||
}
|
||||
|
||||
void QBtSession::setDefaultSavePath(const QString &savepath) {
|
||||
if (defaultSavePath == savepath || savepath.isEmpty())
|
||||
if (QDir(defaultSavePath) == QDir(savepath) || savepath.isEmpty())
|
||||
return;
|
||||
|
||||
defaultSavePath = QDir::fromNativeSeparators(savepath);
|
||||
}
|
||||
|
||||
void QBtSession::setDefaultTempPath(const QString &temppath) {
|
||||
if (defaultTempPath == temppath)
|
||||
if (QDir(defaultTempPath) == QDir(temppath))
|
||||
return;
|
||||
|
||||
if (temppath.isEmpty()) {
|
||||
// Disabling temp dir
|
||||
// Moving all torrents to their destination folder
|
||||
|
Loading…
x
Reference in New Issue
Block a user