mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-23 01:36:15 +03:00
On Linux use legacy 'data' directory only as a fallback
This commit is contained in:
parent
35731b96dc
commit
2d3481b9a9
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ QString Private::DefaultProfile::dataLocation() const
|
|||
const QString dataDir = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation)
|
||||
+ QLatin1Char('/') + profileName() + QLatin1Char('/');
|
||||
|
||||
if (QDir(legacyDir).exists())
|
||||
if (!QDir(dataDir).exists() && QDir(legacyDir).exists())
|
||||
{
|
||||
qWarning("The legacy data directory '%s' is used. It is recommended to move its content to '%s'",
|
||||
qUtf8Printable(legacyDir), qUtf8Printable(dataDir));
|
||||
|
|
Loading…
Reference in a new issue