mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 21:14:33 +00:00
Correctly migrate settings/rss/usage stats in macOS. Closes #6041.
This commit is contained in:
parent
435886bbf0
commit
b2827702e5
@ -233,7 +233,7 @@ bool upgrade(bool ask = true)
|
|||||||
void migratePlistToIni(const QString &application)
|
void migratePlistToIni(const QString &application)
|
||||||
{
|
{
|
||||||
QIniSettings iniFile("qBittorrent", application);
|
QIniSettings iniFile("qBittorrent", application);
|
||||||
if (iniFile.allKeys().isEmpty()) return; // We copy the contents of plist, only if inifile does not exist(is empty).
|
if (!iniFile.allKeys().isEmpty()) return; // We copy the contents of plist, only if inifile does not exist(is empty).
|
||||||
|
|
||||||
QSettings *plistFile = new QSettings("qBittorrent", application);
|
QSettings *plistFile = new QSettings("qBittorrent", application);
|
||||||
plistFile->setFallbacksEnabled(false);
|
plistFile->setFallbacksEnabled(false);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user